gumpu has asked for the wisdom of the Perl Monks concerning the following question:
I am working on a little module to scan a whole tree of sourcefiles for use with Vim. One of the methods is:
sub parseDir { my $self = shift; my $path = shift; # the path to the directroy we are # currently scanning. my $out = shift; # the file we write the results to my $target = shift; # the thing we are searching for my $dir = IO::Dir->new($path) or die "can't open $path : $!"; my @files = $dir->read(); $dir->close(); # Scan all interesting files grep( ( -f "$path/$_" ) and ( $_ =~ m/\.(java|xml|cpp|c|h|inc|pas)$/i ) and ( $self->Scan_File( "$path/$_", $out, $target ) ) , @file +s ); # Also scan any subdirectories. grep( ( ( -d "$path/$_" ) and ( $_ !~ /^\.+$/ ) and # but avoid . and .. ( $self->parseDir( "$path/$_", $out, $target ) ) ), @files + ); }
The odd thing is that the second grep works fine while the first grep results in a: 'Not enough arguments for grep at scan.pl line 63, near "@files )"'. The only difference between the two is that the first has a '(' ')' pair less. I am quite puzzled why this makes a difference, since both
( expression ) and ( expression ) and ( expression)
and
( ( expression ) and ( expression ) and ( expression) )
seem to me to be syntactically correct expression.
Can anybody shed some light on this?
Have Fun
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Confusing syntax error with grep
by etcshadow (Priest) on Aug 12, 2004 at 14:15 UTC | |
by revdiablo (Prior) on Aug 12, 2004 at 16:42 UTC | |
by gumpu (Friar) on Aug 12, 2004 at 17:25 UTC | |
by ysth (Canon) on Aug 12, 2004 at 18:48 UTC | |
by gumpu (Friar) on Aug 12, 2004 at 19:45 UTC | |
by gumpu (Friar) on Aug 12, 2004 at 18:38 UTC | |
|
Re: Confusing syntax error with grep
by rsteinke (Scribe) on Aug 12, 2004 at 14:06 UTC | |
by ikegami (Patriarch) on Aug 12, 2004 at 15:36 UTC | |
by gumpu (Friar) on Aug 12, 2004 at 16:07 UTC | |
by ikegami (Patriarch) on Aug 12, 2004 at 16:16 UTC |