Forum Moderators: bakedjake
cp foo bar
cp foo baz
cp foo quux
in that order. To make an script from it, take the arguments list, split it between the source and the destiny list and substitute (pseudocode - does not include extracting arguments):
for i in $DESTLIST; do cp $SOURCE $i; done
In your example it would be:
for i in two three four; do cp one $i; done