Linux / UNIX: Bash Loop Forever
The syntax is as follows to cycle through a loop forever using while loop:
while [ 1 ] do command1 command2 doneOR use the following syntax:
while :; do echo 'Hit CTRL+C'; sleep 1; done
For loop example
To cycle through a loop forever using for loop:for (( ; ; )) do echo "Pres CTRL+C to stop..." sleep 1 done
Không có nhận xét nào:
Đăng nhận xét