Skip to content

Instantly share code, notes, and snippets.

@jlong
Created September 14, 2009 14:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jlong/186664 to your computer and use it in GitHub Desktop.
Save jlong/186664 to your computer and use it in GitHub Desktop.
# disk usage per directory
usage ()
{
if [ $1 ]
then
du -hd $1
else
du -hd 1
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment