Skip to content

Instantly share code, notes, and snippets.

@kule
kule / linode_disk_space.sh
Created November 17, 2010 15:35
Linode Ubuntu; check the amount of disk space you have left.
df -H | grep -vE '^Filesystem|tmpfs|cdrom' | grep 'xvda' | awk '{ print $5 " (" $4 ") Left " }'