https://stackoverflow.com/questions/12919980/nohup-is-not-writing-log-to-output-file
export PYTHONUNBUFFERED=1
nohup ./cmd.py > cmd.log &
or
nohup python -u ./cmd.py > cmd.log &
https://stackoverflow.com/questions/12919980/nohup-is-not-writing-log-to-output-file
export PYTHONUNBUFFERED=1
nohup ./cmd.py > cmd.log &
or
nohup python -u ./cmd.py > cmd.log &