use warnings;
use File::Find;
my $srceDir = "//mnt/Share_Drive/Verizon PM&T/Capture Files/";
opendir(DIR, $srceDir) or die "Can't open $srceDir: $!";
my @files = (find -type f -newermt "12 Feb 2013", $srceDir);
closedir(DIR);
I can run the find command with the -newermt option in Linux just fine but when I put it in the perl script I got the errors below, could you help? Thanks
String found where operator expected at ./queryAlm.pl line 11, near "newermt "12 Feb 2013""
(Do you need to predeclare newermt?)
syntax error at ./queryAlm.pl line 11, near "newermt "12 Feb 2013""

findinstead of the perl module you previously imported. – h3rrmiller Feb 13 at 17:35