Archives for: "July 2013"

Using find to delete files more than x days old

July 8th, 2013
find . -name "server.log*" -mtime +30 -exec rm -f {} \; more »