http://qs321.pair.com?node_id=58551


in reply to del files that is 7 days or older

This will delete any files in the current directory that are 7 or more days old:

perl -e 'unlink grep { -M >= 7 } <*>'