如何获取我的脚本的 PID?

如何获取我的脚本的 PID?

如果我有脚本“script1.sh”,我想让它首先打印自己的 PID。我该如何在 bash 中做到这一点?

答案1

当前正在运行的脚本的 PID 是$$

http://www.gnu.org/software/bash/manual/bashref.html#index-_0024_0024

( $$) 扩展为 shell 的进程 ID。在()子 shell 中,它扩展为调用 shell 的进程 ID,而不是子 shell。

相关内容