Thứ Bảy, 20 tháng 10, 2012

loop forever

Linux / UNIX: Bash Loop Forever

by on January 1, 2011 · 0 comments· last updated at May 19, 2011
I need to cycles through a loop forever using for or while syntax. How do I set such loop under UNIX or Linux operating systems?

The syntax is as follows to cycle through a loop forever using while loop:
while [ 1 ]
do
    command1
    command2
done
 
OR 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