Archives Posts
delete files older than x days
October 19th, 2007 by tom
to delete files that are older than x days on your linux server, you can use:
find /path/*.gif -mtime +1 -exec rm {} ;
Filed under linux having 1 Comment »
to delete files that are older than x days on your linux server, you can use:
find /path/*.gif -mtime +1 -exec rm {} ;