Friday, July 23, 2010

Bash - One line based For Loop

today I needed to start 40 jobs in a row and the easiest way I could think about was to use a one line bash script todo this for me


for i in `seq 40`; do ./node.sh; done


tada...

No comments:

Post a Comment