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 中的子进程的情况下从子进程脚本中杀死父进程脚本。
如果你的 shell 定义了 PPID,kill $PPID将杀死父级。如果你的 shell 没有定义PPID,你可能可以用PPID=$( ps -o ppid= $$ ). 这种行为没有理由杀死孩子。
kill $PPID
PPID
PPID=$( ps -o ppid= $$ )