Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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
share|improve this question
1  
replace newlines with semicolons. The same works for for loops. – Tom Aug 17 '09 at 16:34
9  
@Tom: that doesn't always work. after the do, you must have the first command, not a semicolon – Stefano Borini Aug 17 '09 at 16:38

6 Answers

up vote 186 down vote accepted
while true; 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.

$ while true
> do
>    echo "hello"
>    sleep 2
> done
hello
hello
hello
^C
$ <arrow up> while true; do    echo "hello";    sleep 2; done
share|improve this answer
36  
+1 for meter and rhyme. It's a great mnemonic: "while true do foo sleep too la di da" :D – Shabbyrobe Dec 10 '11 at 6:55
"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." was not true for me. – Vincent Scheib Jan 9 at 21:35
@VincentScheib, check cmdhist option if you are using bash? – Alok Singhal Mar 5 at 18:56
@VincentScheib works for me on OS X and Ubuntu. – Alfo Mar 23 at 14:16

You can use semicolons to separate statements:

$ while [ 1 ]; do foo; sleep 2; done
share|improve this answer

Colon is always "true":

while :; do foo; sleep 2; done
share|improve this answer

It's also possible to use sleep command in while's condition. Making one-liner looking more clean imho.

while sleep 2; do echo thinking; done
share|improve this answer
good to know !! – H_7 Jan 25 at 3:08

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

while true ; do echo Launching Spaceship into orbit && sleep 5s && /usr/bin/launch-mechanism && echo Launching in T-5 && sleep 1s && echo T-4 && sleep 1s && echo T-3 && sleep 1s && echo T-2 && sleep 1s && echo T-1 && sleep 1s && echo liftoff ; done
share|improve this answer

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":

for f in *; do if [ "${f#*.}" == 'jpg' ]; then echo $f; fi; done

This deletes them:

for f in *; do if [ "${f#*.}" == 'jpg' ]; then rm -r $f; fi; done

Just trying to contribute.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.