How to get a list of programs running with nohup

后端 未结 5 2000
情话喂你
情话喂你 2021-01-29 19:25

I am accessing a server running CentOS (linux distribution) with an SSH connection. Since I can\'t always stay logged in, I use \"nohup [command] &\" to run my programs.

5条回答
  •  悲&欢浪女
    2021-01-29 19:43

    You can also just use the top command and your user ID will indicate the jobs running and the their times.

    $ top

    (this will show all running jobs)

    $ top -U [user ID]

    (This will show jobs that are specific for the user ID)

提交回复
热议问题