スクリプトをバックグラウンド起動(ログ無し) [Python][nohup]

1月 10, 2022

nohup python hoge.py > /dev/null 2>&1 &

nohupで動かしたジョブの確認と削除

$ xclock
  [1] 492
$ jobs
  [1]+  Running      xclock &
$ kill %1

sudoはnohupの前に記載

sudo nohup python hoge.py > /dev/null 2>&1 &

標準出力とエラーログを残しておきたいとき

nohup python hoge.py > out.log 2> error.log &

Linux,Python

Posted by vastee