Skip to content

Instantly share code, notes, and snippets.

@matinrco
Created August 30, 2017 10:00
Show Gist options
  • Save matinrco/6bfc64963dec70c4664d5e540b287319 to your computer and use it in GitHub Desktop.
Save matinrco/6bfc64963dec70c4664d5e540b287319 to your computer and use it in GitHub Desktop.
Delete old log files in /var/log
sudo find /var/log -type f -regex ".*\.gz$" -delete
sudo find /var/log -type f -regex ".*\.[0-9]$" -delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment