Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
子がまだ実行されている間に呼び出し元のプロセスを終了できるようにするプロセスを Python で作成する必要があります。これを行う効果的な方法は何ですか?
注: UNIX 環境で実行しています。
Unix ライクなオペレーティング システムでは、親プロセスを終了しても子プロセスは終了しないため、特別なことを行う必要はありません。サブプロセスを開始しsubprocess.Popenてメインプロセスを終了するだけです。孤立したプロセスは、init によって自動的に採用されます。
subprocess.Popen