perlmoth has asked for the wisdom of the Perl Monks concerning the following question:
I get this:#!d:/perl/bin -w use strict; use diagnostics; use File::Find; @ARGV = (); find sub { push @ARGV, $File::Find::name if (/\.pl$/ and (-M < 1.0)); }, "d:/perl"; $,="\n"; print @ARGV;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: -M file test problem
by count0 (Friar) on Jan 17, 2002 at 01:44 UTC | |
|
Re: -M file test problem
by FoxtrotUniform (Prior) on Jan 17, 2002 at 01:46 UTC |