Which one is better: using ; or && to execute multiple commands in one line?
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.
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.