In the following script, we print integers from 0 indefinitely using While True loop. Example.sh i=0 while true do echo "$i" let i++ done. Output 0 1 2 3 ..
確定! 回上一頁