我正在使用以下命令在后台运行 python 脚本:
nohup ./cmd.py > cmd.log &
但似乎 nohup 没有向日志文件写入任何内容。cmd.log 已创建,但始终为空。在 python 脚本中,我使用sys.stdout.write而不是print打印到标准输出。我做错什么了吗?
sys.stdout.write
print
看起来您需要定期刷新标准输出(例如sys.stdout.flush())。print在我的测试中,即使程序退出,Python 也不会自动执行此操作。
sys.stdout.flush()