Skip to content

Instantly share code, notes, and snippets.

@agundy
Created December 12, 2013 20:43
Show Gist options
  • Save agundy/7935099 to your computer and use it in GitHub Desktop.
Save agundy/7935099 to your computer and use it in GitHub Desktop.
List the Five biggest folders in a directory.
echo "Five Biggest folders:"
du ../../test_data/shell_scripts/* -d 1 | sort -rn | head -n 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment