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
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