技术解析
使用如下命令创建了几个后台任务
nohup python __main__.py > ./20180103_log_1.out 2>&1 &
nohup python __main__.py > ./20180103_log_2.out 2>&1 &
nohup python __main__.py > ./20180103_log_3.out 2>&1 &
nohup python __main__.py > ./20180103_log_4.out 2>&1 &
在当前窗口使用 jobs
[1] Running nohup python __main__.py > ./20180103_log_4.out 2>&1 &
[2] Running nohup python __main__.py > ./20180103_log_3.out 2>&1 &
[3]- Running nohup python __main__.py > ./20180103_log_2.out 2>&1 &
[4]+ Running nohup python __main__.py > ./20180103_log_1.out 2>&1 &
打开新的 shell 窗口,使用 jobs,不会显示任何信息
[email protected]:~# jobs
[email protected]:~#
求问哪位大哥是否了解这是什么情况,是否有办法在其他 shell 窗口显示 jobs 任务?