Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 270 Bytes

'bg'-'fg'.md

File metadata and controls

11 lines (9 loc) · 270 Bytes

Send running process to background

  • Ctrl+z - pause process
  • bg
  • disown -h %1

Bring running process to foreground

  • jobs - get process ID
  • fg %ID

Run process in background

  • nohup PROCESS & - independent from shell with nohangup