Eric Blake [mailto:ebl...@redhat.com]
Sent: Friday, November 01, 2013 10:26 PM
To: Xiao Wu DAI; bug-findutils@gnu.org
Subject: Re: xargs bugs
On 11/01/2013 01:54 AM, Xiao Wu DAI wrote:
>
> hi,
>
> it seems `echo ..` doesn't work in GNU xargs version 4.2.27 like below
> | xargs
On 11/01/2013 01:54 AM, Xiao Wu DAI wrote:
>
> hi,
>
> it seems `echo ..` doesn't work in GNU xargs version 4.2.27 like below
> | xargs -t -i mv {}`echo {} |sed 's/mode/dai/g'`
'echo' is your friend. Try:
echo xargs -t -i mv {} `echo {} | sed 's/mode/dai/g'`
to see that you were executing:
x