我在 /etc/init.d 中有一个 shell 脚本,它启动一个 python 脚本,这是那一行:
/pathto/python /pathto/file.py >>/pathto/stdout_stderr.log 2>&1 &
计划是将stdout和stderr捕获到一个文件中,并在后台运行该进程
我在日志中看到了来自 python 子进程的信息(例如来自 aplay),但没有来自 python print 的输出
该计划是保持python简单和可重用,但我更愿意改变我在shell脚本中的方法......