Copy single file in multiple folder using bash shell
Recursive copy
or
echo folder1 folder2 folder3 | xargs -n 1 cp -f file
or
echo folder*/ | xargs -n 1 cp -f file
Comments
Post a Comment