Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
How can I run the below command for *.c,*.sh?
`find.exe . -name "*.h" -print0 | xargs -0 grep -i $folder`; `find.exe . -name "*.h,*.c,*.sh" -print0 | xargs -0 grep -i $folder`; +--->Will this work?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Running find.exe for multiple extensions
by wind (Priest) on Apr 29, 2011 at 22:57 UTC | |
by Anonymous Monk on Apr 29, 2011 at 23:13 UTC | |
by wind (Priest) on Apr 29, 2011 at 23:21 UTC |