DEBSOURCES
Skip Quicknav
sources / prrte / 3.0.13-1 / test / cycle_forever.sh
123456789101112
#!/bin/bash i=0 for (( ; ; )) do prun -n 1 hostname > /dev/null ((i++)) if [ $i -eq 1000 ] then echo Executed $i times i=0; fi done