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.
Linux で子プロセスを終了せずに、子プロセス スクリプトから親プロセス スクリプトを強制終了するにはどうすればよいですか。
シェルが PPID を定義している場合kill $PPID、親を強制終了します。シェルで が定義されていない場合はPPID、おそらく で取得できますPPID=$( ps -o ppid= $$ )。この行動に子供を殺す理由はありません。
kill $PPID
PPID
PPID=$( ps -o ppid= $$ )