xargs still nok?

zzapper david@tvis.co.uk
Thu Sep 8 14:44:00 GMT 2005


On Thu, 08 Sep 2005 14:01:31 +0200,  wrote:

>Corinna Vinschen wrote:
>
>>On Sep  8 10:26, zzapper wrote:
>>  
>>
>>>Hi,
>>>
>>>GNU xargs version 4.2.25
>>>
>>>or more likely am I misusing xargs?
>>>
>>>$ ls *.cfm */*.cfm */*/*.cfm */*/*/*.cfm | xargs grep -i host
>>>bash: /usr/bin/ls: Argument list too long
>>>    
>>>
>>  ^^^^^^^^^^^^^^^^^
>>  Nothing to do with xargs.  Use find instead of ls/w wildcards.
>>  
>>
>yes, you should rather write
>$ find . -name "*.cfm" -print0 | xargs -0 grep -i host

Is Xargs still reqd for

find . -name '*.cfm' -exec grep -i {} \;

-- 
zzapper
Success for Techies and Vim,Zsh tips
http://SuccessTheory.com/


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/



More information about the Cygwin mailing list