将 Python 命令的输出重定向到日志文件的时候,发现输出并不会写到日志文件里
原因是 Python 做了缓存,要把缓存去掉,需要加参数 -u
比如
nohup python -u test.py > test.log 2>&1 &