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
Post a Comment