Created
November 17, 2010 15:35
-
-
Save kule/703519 to your computer and use it in GitHub Desktop.
Linode Ubuntu; check the amount of disk space you have left.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
df -H | grep -vE '^Filesystem|tmpfs|cdrom' | grep 'xvda' | awk '{ print $5 " (" $4 ") Left " }' |
Second that. Thanks.
I get no output when I execute this.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
awesome, thanks man.