Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to copy a single file to multiple directories using the cp command ?

I tried the following , which did not work:

cp file1 /foo/ /bar/
cp file1 {/foo/,/bar}

I know it's possible using a for loop, or find. But is it possible using the gnu cp command?

share|improve this question

8 Answers

up vote 22 down vote accepted

No, cp can copy multiple sources but will only copy to a single destination. You need to arrange to invoke cp multiple times - once per destination - for what you want to do; using, as you say, a loop or some other tool.

share|improve this answer
Thanks for the answer! Now that I think about it a bit more, without extra flags (which do not exist) cp will not know what is the source and what is the DEST dir. – Tom Feiner Oct 12 '08 at 16:39
1  
This is not the correct answer. Please see Robert Gamble's answer. – Nocturne Feb 3 at 21:26
1  
@Nocturne: which part of what I said is incorrect? Robert gives an example of using another tool to invoke cp multiple times as I suggest. There are many possible solutions that involve using other tools or constructs to do that, but the OP did indicate he was already aware that is possible. – moonshadow Feb 3 at 22:38
Sad, it would be great for cp (and scp) to support that feature. Yet we can use tee to do the split. superuser.com/questions/32630/… – Simon Mar 13 at 16:42

You can't do this with cp alone but you can combine cp with xargs:

echo dir1 dir2 dir3 | xargs -n 1 cp file1

Will copy file1 to dir1, dir2, and dir3. xargs will call cp 3 times to do this, see the man page for xargs for details.

share|improve this answer
Thanks, this has saved me a lot of time. – Fortisimo Oct 14 '11 at 15:11
7  
This answer is so much more helpful than the accepted answer. – Lee DeLapp Jul 24 '12 at 23:43
This answer doesn't answer the actual question. – Simon Mar 13 at 16:45
1  
More information on xargs: cyberciti.biz/faq/… – Chris B May 2 at 20:26

Wildcards also work with Roberts code

echo ./fs*/* | xargs -n 1 cp test 
share|improve this answer

As far as I can see it you can use the following:

ls | xargs -n 1 cp -i file.dat

The -i option of cp command means that you will be asked whether to overwrite a file in the current directory with the file.dat. Though it is not a completely automatic solution it worked out for me.

share|improve this answer
While it is good to have added the -i guard, won't that prompt you about over writing every file? rather than copying to the directories? – Hedgehog Dec 11 '12 at 2:32
@Hedgehog Well, I think that this command is useful when there is a file in the directory and one wants to copy it to subdirectories of the directory. In this case a file can be overwritten only once. Thanks for your question! – Evgeny Jan 14 at 7:19

I would use cat and tee based on the answers I saw at http://superuser.com/questions/32630/parallel-file-copy-from-single-source-to-multiple-targets instead of cp.

For example:

cat <inputfile> | tee <outfile1> <outfile2> > /dev/null
share|improve this answer

Another way is to use cat and tee as follows: cat | tee | tee [...] >

I think this would be pretty inefficient though, since the job would be split among several processes (one per destination) and the hard drive would be writing several files at once over different parts of the platter. However if you wanted to write a file out to several different drives, this method would probably be pretty efficient (as all copies could happen concurrently).

share|improve this answer
Tee can accept multiple output files per invocation. – Samuel Edwin Ward Jun 5 at 15:27

This will copy to the immediate sub-directories, if you want to go deeper, adjust the -maxdepth parameter.

find . -mindepth 1 -maxdepth 1 -type d| xargs -n 1 cp -i index.html

If you don't want to copy to all directories, hopefully you can filter the directories you are not interested in. Example copying to all folders starting with a

find . -mindepth 1 -maxdepth 1 -type d| grep \/a |xargs -n 1 cp -i index.html

If copying to a arbitrary/disjoint set of directories you'll need Robert Gamble's suggestion.

share|improve this answer

For example if you are in the parent directory of you destination folders you can do:

for i in $(ls); do cp sourcefile $i; done

share|improve this answer
The question says it's possible with a for loop, so this really doesn't add anything. – EbiDK May 8 at 21:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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