December 3, 2008

For your applications in production you should keep some logfiles but delete the older ones to save files space. The following bash script will do the job. It will zip all files older than 7 days. Delete all files older than 30 days. Folders will be ignored. #!/bin/bash directory=”/application/log” old=”7″ older=”30″ find $directory -mtime +$old

Read More