in reply to Re: del files that is 7 days or older
in thread del files that is 7 days or older

Ouch. No. Please, not:
@FileList = `ls -1`;
Much simpler:
@FileList = <*>;
Or, to get files that begin with dot:
@FileList = <.* *>;

-- Randal L. Schwartz, Perl hacker