Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 348 Bytes

or_when.md

File metadata and controls

22 lines (16 loc) · 348 Bytes

and when COMMAND

Represents a condition OR. Should be used after @ block.

Example
@ Probably on linux system
  when test -d /sys
  or test -d /dev
  or test -d /proc
  - do foo
  - do bar

You can write 'or when test...' or just 'or test...'

See also

and when
or when
@