我怎样才能在 nohup shell 脚本代码中制作相同的输出文件?

how can i made same output file in nohup shell script code?

现在,我 运行 在服务器上。

使用nohup进行日志管理, 结果以5个单位输出。

nohup shell脚本代码是这样的

nohup python main.py &
nohup python main.py &
nohup python main.py &
nohup python main.py &
nohup python main.py &

输出以五个为单位。

像这样>>> IMAGE

我希望按顺序打印由上面的 shell 脚本代码组成的日志文件,而不仅仅是第五个。

我该怎么办?

尝试将您的输出按以下方式排序:

nohup python main.py | sort &

但我不确定您为什么 运行 同一个 python 脚本 5 次。我相信 nohup 输出到命令为 运行 的目录中的日志文件,如果有的话,请尝试 cat nohup.out | sort