How to copy one directory to many directory using Linux command? -


if have directory name '1' (without quotes) , want copy directory (with contents) many directories name '2' '70', how using linux commands?

so, each copy once, (in bash @ least)

for x in $(seq 2 70); cp -r 1 $x; done 

should it


Comments

Popular posts from this blog

java.util.scanner - How to read and add only numbers to array from a text file -

rewrite - Trouble with Wordpress multiple custom querystrings -