Nothing stupid about them...

...I just stole the name from David Letterman's "stupid pet tricks". I hope these tips help you avoid or fix mistakes along the way in your *nix administration duties.

Saturday, May 10, 2008

Remove all files older than some-number-of-days

Be careful with this...make sure you don't run it on an operating system directory!

Remove all regular files from /app/logs older than 10 days:

# find /app/logs -type f -mtime +10 -exec rm {} \;

Search

Google