Skip to content

Instantly share code, notes, and snippets.

@kireal
Created November 6, 2015 11:43
Show Gist options
  • Save kireal/f160a58f536e3f7cc741 to your computer and use it in GitHub Desktop.
Save kireal/f160a58f536e3f7cc741 to your computer and use it in GitHub Desktop.
Clean CDH logs files
#!/bin/sh
find /var/log/ -type f -mtime +3 -name "*log*" -delete
find /var/log/ -type f -mtime +3 -name "*log" -delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment