Linux processes cheatsheet - run them in the background

Linux processes: push them in the background

Run your command in the background, you will get the job number

username@host:~$ python3 mysuperscript.py >> results.txt &
[1] 1940670

[1] is the job number 1940670 is the process id

List of commands you should know

Time is precious, save it!

All the documentation regarding these commands can be found online or on the man pages of Linux.