Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

To run two commands at the sametime use the semi-colon ";"

Code Block
languagebash
command1 ; command2

To run a command only after the first command has failed use the double pipe "||"

Code Block
languagebash
command1 || command2

To run a command only if the first is successful use the double ampersand "&&"

Code Block
languagebash
command1 && command2