My bash script is

zenity --question --text=Continue? && echo Continuing...

How can I make it so it would echo Stopping if the user selected no? i.e.:

zenity --question --text=Continue? && echo Continuing... !&& echo Stopping...
link|improve this question

79% accept rate
feedback

5 Answers

up vote 3 down vote accepted

It's not really the opposite of &&, but something like this might do:

zenity --question --text=Continue? && echo Continuing... || echo Stopping...
link|improve this answer
thanks for the fast response! – t3hcakeman Nov 27 '11 at 18:29
3  
Please be cautious! If your "true"-statement isn't a simple echo and can return non-zero value, "else"-statement will be executed too! Please try true && false || echo "Stopping..." – uzsolt Nov 27 '11 at 19:10
feedback

It's the logical OR, ||:

zenity --question --text=Continue? || echo Continuing...

(So true && cmd, false || cmd and cmd all do the same thing.)

link|improve this answer
feedback

Use || to create an "OR list":

zenity --question --text=Continue? && echo Continuing... || echo Stopping...

See http://www.gnu.org/s/bash/manual/bash.html#Lists.

link|improve this answer
feedback
if zenity --question --text='Continue?'
then echo Continuing...
else echo Stopping...
fi
link|improve this answer
feedback

There may be a way to do it on a single line but I usually use the following which I find a bit more readable:

if zenity --question --text=Continue?
then
        echo Continuing...
else
        echo Stopping...
fi
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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