Skip to content

Instantly share code, notes, and snippets.

@CodisRedding
Created March 19, 2016 00:47
Show Gist options
  • Save CodisRedding/51df1e3d1816ba1d737d to your computer and use it in GitHub Desktop.
Save CodisRedding/51df1e3d1816ba1d737d to your computer and use it in GitHub Desktop.
bash cheatsheet
A; B Run A and then B, regardless of success of A
A && B Run B if A succeeded
A || B Run B if A failed
A & Run A in background.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment