Answers for "copy to multiple locations"

1

copy to multiple locations

"cp ~/test.txt ~/folder1 ~/folder2"  <--  in order to do smth like this, do:

tee ~/folder1/test.txt ~/folder2/test.txt < ~/test.txt >/dev/null
Posted by: Guest on September-17-2021

Code answers related to "copy to multiple locations"

Browse Popular Code Answers by Language