vote up 0 vote down star

Note:

# cat /tmp/foo - regular file

/lib/a.lib
/lib/b.lib
/lib/c.lib
/lib/d.lib


cat /tmp/foo | xargs cp /tmp/fred

cp: target /lib/d.lib is not a directory

flag

Is /tmp/fred a directory? – Sinan Ünür Oct 22 at 21:32

6 Answers

vote up 5 vote down check

xargs normally places its substituted args last. You could just do:

$ cp `cat /tmp/foo` /tmp/fred/.

If it's really just the lib files, then cp /lib/?.lib /tmp/fred/. would naturally work.

And to really do it with xargs, here is an example of putting the arg first:

0:~$ (echo word1; echo word2) | xargs -I here echo here how now
word1 how now
word2 how now
0:~$
link|flag
@DigitalRoss: Thank you Sir – Aaron Oct 22 at 21:57
vote up 0 vote down

Why not try something like:

cp /lib/*.lib /tmp/fred

I think your command is failing because xargs creates the following command:

cp /tmp/fred /lib/a.lib /lib/b.lib /lib/c.lib /lib/d.lib

That is, it ends up trying to copy everything to /lib/d.lib, which is not a directory, hence your error message.

link|flag
vote up 0 vote down

The destination directory needs to be the last thing on the command line, however xargs appends stdin to the end of the command line so in your attempt it ends up as the first argument.

You could append the destination to /tmp/foo before using xargs, or use cat in backticks to interpolate the sorce files before the destination:

    cp `cat /tmp/foo` /tmp/fred/
link|flag
vote up 0 vote down

Your version of xargs probably accepts -I:

xargs -I FOO cp FOO /tmp/fred/ < /tmp/foo
link|flag
vote up 0 vote down

Assuming /tmp/fred is a directory, specify it using the -t (--target-directory option):

$ cat /tmp/foo | xargs cp -t /tmp/fred
link|flag
vote up 0 vote down

Assuming /tmp/fred is a directory that exists, you could use a while loop

while read file
do
    cp $file /tmp/fred
done < /tmp/foo
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.