Wilkins, Jason wrote:
xargs: unmatched single quote Broken pipeCommand i am usingfind / -type f -print | xargs grep "jason"
try this:
find / -type f -exec grep -H jason {} \;
or this:
find / -type f -printf '"%p"\n' | xargs grep jason
The second command should be marginally faster, but the
syntax isn't as readable...
-duncan