RosettaCodeData/Task/Short-circuit-evaluation/C-Shell/short-circuit-evaluation-2.csh
2023-07-01 13:44:08 -04:00

8 lines
240 B
Tcsh

# 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