Bash - Keyboard Shortcuts - Processes


Manage running processes

  • Ctrl + c: Kill the current running process
  • Ctrl + z: Suspends the current running process and moves it to the background
    • Use bg to start the process in the background
    • Use jobs and fg %<Number> to bring it back to the foreground
  • Ctrl + d: Send the EOF (End-Of-File) marker. If in bash, the terminal will exit