Skip to content

Instantly share code, notes, and snippets.

@jlaustill
Created August 22, 2017 18:44
Show Gist options
  • Save jlaustill/10f335f02090aaed1c7c994c23ffb1dc to your computer and use it in GitHub Desktop.
Save jlaustill/10f335f02090aaed1c7c994c23ffb1dc to your computer and use it in GitHub Desktop.
#!/bin/sh
df -H | grep -vE '^Filesystem|tmpfs|cdrom' | awk '{ print $5 " " $1 }' | while read output;
do
# echo $output
usep=$(echo $output | awk '{ print $1}' | cut -d'%' -f1 )
partition=$(echo $output | awk '{ print $2 }' )
if [ $usep -ge 80 ]; then
echo "Running out of space \"$partition ($usep%)\" on $(hostname) as of $(date)"
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment