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
|
|
|
|
|
xargs normally places its substituted args last. You could just do:
If it's really just the lib files, then And to really do it with
|
|||
|
|
|
Why not try something like:
I think your command is failing because xargs creates the following command:
That is, it ends up trying to copy everything to /lib/d.lib, which is not a directory, hence your error message. |
||
|
|
|
|
The destination directory needs to be the last thing on the command line, however You could append the destination to /tmp/foo before using xargs, or use cat in backticks to interpolate the sorce files before the destination:
|
||
|
|
|
|
Your version of xargs probably accepts
|
||
|
|
|
|
Assuming
|
|||
|
|
|
|
Assuming /tmp/fred is a directory that exists, you could use a while loop
|
||
|
|
/tmp/freda directory? – Sinan Ünür Oct 22 at 21:32