we need to run the run.sh on each 10 steps
for x in {1..100} ; do
sleep 1
/tmp/run.sh
done
so finally run.sh will run 10 times
how we can do that?
other example ( in this case run.sh will run 20 times )
for x in {1..200} ; do
sleep 1
/tmp/run.sh
done
sleep 1that need to be run on all iterations ?