Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!ncar!boulder!spot!skwu From: skwu@boulder.Colorado.EDU (WU SHI-KUEI) Newsgroups: comp.unix.questions Subject: if ! command Message-ID: <13122@boulder.Colorado.EDU> Date: 24 Oct 89 18:42:56 GMT Sender: news@boulder.Colorado.EDU Reply-To: skwu@spot.Colorado.EDU (WU SHI-KUEI) Organization: University of Colorado, Boulder Lines: 20 The command: command || whatever is entirely equivalent to: if command then : else whatever fi If 'whatever' is more than one line, one can write: command || { whatever1 whatever2 . . . }