Do you want BuboFlash to help you learning these things? Or do you want to add or correct something? Click here to log in or create user.



Question
In linux, in bash scripting, if you are in while/until/for loop and you wan the current loop iteration to end and just go to the next iteration (i.e. start at top of loop), you use the [...] keyword
Answer
continue

Question
In linux, in bash scripting, if you are in while/until/for loop and you wan the current loop iteration to end and just go to the next iteration (i.e. start at top of loop), you use the [...] keyword
Answer
?

Question
In linux, in bash scripting, if you are in while/until/for loop and you wan the current loop iteration to end and just go to the next iteration (i.e. start at top of loop), you use the [...] keyword
Answer
continue
If you want to change selection, open document below and click on "Move attachment"

7. Shell Scripting
causes program execution to break out of both loops; and so on for values above 2 . The continue statement is also useful for terminating the current iteration of the loop. This means that if a <span>continue statement is encountered, execution will immediately continue from the top of the loop, thus ignoring the remainder of the body of the loop: 5 10 #!/bin/sh for i in 0 1 2 3 4 5 6 7 8 9

Summary

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Details

No repetitions


Discussion

Do you want to join discussion? Click here to log in or create user.