Skip to content

Instantly share code, notes, and snippets.

@paulja
Created February 17, 2017 15:56
Show Gist options
  • Save paulja/f52bf1a32d0fca6f4adb2b8ba34627b4 to your computer and use it in GitHub Desktop.
Save paulja/f52bf1a32d0fca6f4adb2b8ba34627b4 to your computer and use it in GitHub Desktop.
Shows the disk space in use per item in the current location
#!/bin/bash
for dir in $( ls | xargs );
do
du -sh $dir 2>/dev/null
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment