标签: bash shell unix command
这个shell命令在做什么?
trap 'sudo kill -9 -- -$$' EXIT
答案 0 :(得分:6)
$$
-$$
--
因此,退出时trap将终止脚本的所有子进程。
trap
§ Internal Variables