<command> &
- Put the running process in the background
- We're then able to execute other commands in the same terminal even when the other process is loading.
- When it succeeds, we get a flashing
PID
of that process. 😃

<command1>; <command2>
- Similar to
&&
- Difference is that the second command will execute even if the first one fails.

Other operators to lookout for →