Skip to content

Instantly share code, notes, and snippets.

@shaulhameed
Created May 11, 2017 03:22
Show Gist options
  • Save shaulhameed/bf3837e896bea1fa58d0fce1beb9e78a to your computer and use it in GitHub Desktop.
Save shaulhameed/bf3837e896bea1fa58d0fce1beb9e78a to your computer and use it in GitHub Desktop.
Lists all the folder size.
function listfiles {
for f in *; do
echo $(du -hs $f)
done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment