Having trouble coming up with the right combination of semicolons and/or braces. I'd like to do this, but as a one-liner from the command line:
while [ 1 ]
do
foo
sleep 2
done
|
By the way, if you type it as a multiline (as you are showing) at the command prompt and then call the history with arrow up, you will get it on a single line, correctly punctuated.
|
|||||||||||
|
|
You can use semicolons to separate statements:
|
|||
|
|
|
It's also possible to use sleep command in while's condition. Making one-liner looking more clean imho.
|
||||
|
|
|
I like to use the semicolons only for the WHILE statement, and the && operator to make the loop do more than one thing... So I always do it like this
|
||||
|
|
|
If I can give two practical examples (with a bit of "emotion"). This writes the name of all files ended with ".jpg" in the folder "img":
This deletes them:
Just trying to contribute. |
|||
|
|