Learn N Try

For all Lean Enthusiast

Jobs

  • Jobs command is to see the all the running jobs
  • To see all running jobs

jobs -l

  • To send process in background

bg % <job number>

  • To send process in foreground

fg % <job n umber>

  • To run the process even if session is closed

nohup <process>

example: nohup sleep 1000