delete files older than x days
to delete files that are older than x days on your linux server, you can use:
find /path/*.gif -mtime +1 -exec rm {} ;
October 19th, 2007 | linux |
to delete files that are older than x days on your linux server, you can use:
find /path/*.gif -mtime +1 -exec rm {} ;
December 20th, 2007 at 8:28 am
I would like to see a continuation of the topic