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...
|
feedback
|
|
It's not really the opposite of
| |||||||
feedback
|
|
It's the logical OR,
(So | |||
|
feedback
|
|
Use
| |||
|
feedback
|
| |||
|
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:
| |||
|
feedback
|