Re: recursive grep for Windows

2004-07-21 Thread Jenda Krynicky
From: "John W. Krahn" <[EMAIL PROTECTED]> > "Perl.Org" wrote: > > > > Can anyone share a script that recurses a filesystem for files > > containing one or more patterns? Seems like it would be easy to > > write but if it's already out there... > > This will probably work: > > #!/usr/bin/perl >

Re: recursive grep for Windows

2004-06-29 Thread John W. Krahn
"Perl.Org" wrote: > > Can anyone share a script that recurses a filesystem for files containing one > or more patterns? Seems like it would be easy to write but if it's already > out there... This will probably work: #!/usr/bin/perl use warnings; use strict; use File::Find; my $dir = shift ||

Re: recursive grep for Windows

2004-06-28 Thread John W. Krahn
"Perl.Org" wrote: > > Can anyone share a script that recurses a filesystem for files containing one > or more patterns? Seems like it would be easy to write but if it's already > out there... This will probably work: #!/usr/bin/perl use warnings; use strict; use File::Find; my $dir = shift ||

Re: recursive grep for Windows

2004-06-28 Thread Randy W. Sims
perl.org wrote: Can anyone share a script that recurses a filesystem for files containing one or more patterns? Seems like it would be easy to write but if it's already out there... This was a recent perl QotW (Quiz of the Week) exercise. My solution can be found at

recursive grep for Windows

2004-06-28 Thread perl.org
Can anyone share a script that recurses a filesystem for files containing one or more patterns? Seems like it would be easy to write but if it's already out there... -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]