Skip to content

Instantly share code, notes, and snippets.

@luanlmd
Last active August 29, 2015 14:06
Show Gist options
  • Save luanlmd/c948010454779f94c593 to your computer and use it in GitHub Desktop.
Save luanlmd/c948010454779f94c593 to your computer and use it in GitHub Desktop.
Remove files if disc is almost full
if [ $(df -P /dev/sda1 | awk '{ gsub("%",""); capacity = $5 }; END { print capacity }') -gt 95 ]
then
find /var/www/html/ -type f | sort -n | head -50 | xargs rm
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment