Showing posts with label shell scripting. Show all posts
Showing posts with label shell scripting. Show all posts

Monday, August 4, 2008

Simple shell for loop

Simple for loop in shell to run a command n times.

for i in `seq 1 10`; do your_command_here.sh; done;