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
Using a bash script
DESTINATIONPATH[0]="xxx/yyy" DESTINATIONPATH[1]="aaa/bbb" .. DESTINATIONPATH[5]="MainLine/USER" NumberOfDestinations=6 for (( i=0; i