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

iphone - Three second countdown in cocos2d -

hyperlink - how to do url routing in php -

c - Avoiding Extra Malloc in Linked List (node->next = NULL) -