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, the [...] statement is identical to the while statement except that the reverse logic is applied in the condition clause.
Answer
until

Question
In linux, in bash scripting, the [...] statement is identical to the while statement except that the reverse logic is applied in the condition clause.
Answer
?

Question
In linux, in bash scripting, the [...] statement is identical to the while statement except that the reverse logic is applied in the condition clause.
Answer
until
If you want to change selection, open document below and click on "Move attachment"

7. Shell Scripting
(Try counting down from 10 with -ge (greater than or equal).) It is easy to see that shell scripts are extremely powerful, because any kind of command can be executed with conditions and loops. <span>The until statement is identical to while except that the reverse logic is applied. The same functionality can be achieved with -gt (greater than): N=1 ; until test "$N" -gt "10"; do echo "Number $N"; N=$[N+1] ; done 7.3 Looping to Repeat Commands: the for Statement Th

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.