Any time you're using xargs I would strongly suggest using -0 to avoid surprises. For example if you have a file with ' in the name it'll screw things up.
That is, instead of: xargs whatever < file
use: tr \\n \\0 < file | xargs -0 whatever
and your xargs will behave itself.
Name:
Anonymous2009-04-20 11:22
>>6
More like xargs -d\\n -afile -- cp -t somewhere.
>>8-9 >>1 clearly states that the filenames are seperated with newlines. The damage has already been done, so the useless use of tr in >>6 doesn't help.