RosettaCodeData/Task/Short-circuit-evaluation/UNIX-Shell/short-circuit-evaluation-3.sh

9 lines
240 B
Bash
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
# Succeeds, only prints "ok".
if ( 1 || { echo This command never runs. } ) echo ok
# Fails, aborts shell with "bad: Undefined variable".
if ( 1 || $bad ) echo ok
# Prints "error", then "ok".
if ( 1 || `echo error >/dev/stderr` ) echo ok