Hello Staralfur,

Another alternative is to use find with multiple parameters and traverse through your directories. But notice that on some systems (such as Cygwin), parentheses are necessary to make the set of extensions inclusive: my @files = `find $path \( -name '*.c' -o -name '*.txt'\)`;.

Sample of script (WRONG see bellow Update2 and Update3):

#!/usr/bin/perl use strict; use warnings; use Data::Dumper; my $path = shift || '.'; print Dumper traverse($path); sub traverse { my ($path) = @_; my @files = `find $path -name '*.c' -o -name '*.txt'`; return if not -d $path; opendir my $dh, $path or die; while (my $sub = readdir $dh) { next if $sub eq '.' or $sub eq '..'; traverse("$path/$sub"); } close $dh; chomp @files; return \@files; } __DATA__ $ perl file.pl $VAR1 = [ './counts.txt', './file.txt', './sample.c', './testDir/anotherSample.c', './test.txt' ];

But to be 100% honest, I think I would have gone also with stevieb, more generic on OS system. But maybe you can come up with something different.

Update: Combining stevieb solution and File::Find:

#!/usr/bin/perl use strict; use warnings; use File::Find; use Data::Dumper; my @dirs = @ARGV ? @ARGV : ('.'); my @list; find( sub{ push @list, $File::Find::name if -f $_ && $_ =~ /(?:\btest\b|\bsample\b|\bChris\b)/ }, @dirs ); print Dumper \@list; __DATA__ $ perl file.pl $VAR1 = [ './test.pl~', './sample.c', './test.txt~', './test.pl', './test.txt' ];

Update2: Combining stevieb solution and recursive search on directories:

#!/usr/bin/perl use strict; use warnings; use Data::Dumper; my @files; my $path = shift || '.'; print Dumper traverse($path); sub traverse { my ($path) = @_; return if not -d $path; opendir my $dh, $path or die; while (my $sub = readdir $dh) { next if $sub eq '.' or $sub eq '..'; push @files, "$path/$sub" if ("$path/$sub" =~ /(?:\btest\b|\banotherSample\b|\bsample\b) +/); traverse("$path/$sub"); } close $dh; return \@files; } __DATA__ $ perl file.pl $VAR1 = [ './test.pl~', './sample.c', './test.txt~', './testDir/anotherSample.c', './test.pl', './test.txt' ];

Update3: :Another alternative is to use find with multiple parameters and traverse through your directories. But notice that on some systems (such as Cygwin), parentheses are necessary to make the set of extensions inclusive: my @files = `find $path \( -name '*.c' -o -name '*.txt'\)`;.

#!/usr/bin/perl use strict; use warnings; use Data::Dumper; my $path = shift || '.'; my @files = `find $path -name '*.c' -o -name '*.txt'`; chomp @files; print Dumper \@files; __DATA__ $ perl file.pl $VAR1 = [ './test.pl~', './sample.c', './test.txt~', './testDir/anotherSample.c', './test.pl', './test.txt' ];

Hope this helps.

Seeking for Perl wisdom...on the process of learning...not there...yet!

In reply to Re: File::Find find several strings in one directory by thanos1983
in thread File::Find find several strings in one directory by Staralfur

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.