my @files = glob("myfile*.txt"); foreach my $file (@files) { print "FILE: $file \n"; unlink($file); } [download]
In reply to Re: remove files by ogrp in thread remove files by catfish1116