Skip to content

Instantly share code, notes, and snippets.

@nhtzr
Created December 12, 2019 21:23
Show Gist options
  • Save nhtzr/6b18867d22bb2c147263073defae4771 to your computer and use it in GitHub Desktop.
Save nhtzr/6b18867d22bb2c147263073defae4771 to your computer and use it in GitHub Desktop.
my-df() {
df -h |
awk '$NF != "/" && NR > 1 {print $NF}' |
xargs -I{} echo --exclude {} |
sudo xargs du / -h \
--exclude /sys \
--exclude /proc |
tee du.out |
sort -h |
less
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment