Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
Hi, I am using the following code to get all the files with "#include" in cwd recursively(pls let me know if there is a better way).Whenever I run this code I get the below warnings.Has anyone faced such issue before?
my @grep_includes=`find.exe . -name "*" -print0 | xargs -0 grep -i #in +clude`; OUTPUT:- grep: ./files/tools/boot: Invalid request code grep: ./files/tools/boot/bin: Invalid request code grep: ./files/tools/usbdrivers: Invalid request code grep: ./files/tools/usbdrivers/win7: Invalid request code grep: ./files/tools/usbdrivers/xp: Invalid request code
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: "Invalid request code "error
by Anonymous Monk on Mar 20, 2011 at 00:48 UTC | |
by Anonymous Monk on Mar 20, 2011 at 00:56 UTC | |
by Anonymous Monk on Mar 20, 2011 at 03:57 UTC | |
by Anonymous Monk on Mar 20, 2011 at 04:10 UTC | |
by Anonymous Monk on Mar 20, 2011 at 04:30 UTC | |
by Anonymous Monk on Mar 20, 2011 at 05:00 UTC | |
| |
|
Re: "Invalid request code "error
by Anonymous Monk on May 23, 2019 at 06:49 UTC |