Total Pageviews

Thursday, September 2, 2010

Execute the same task for n times

To execute the script 5 times using  bash for loop

for i in {1..5}; do sh /mymscripts/CreateNewNode-from-vm-Template.sh ;  done;

No comments: