$BASHPID 和 $$ 在某些情况下有所不同

$BASHPID 和 $$ 在某些情况下有所不同

我正在阅读“Orelly的BASH袖珍指南”。它说:

当前 Bash 进程的进程 ID。在某些情况下,这可能与 $$ 不同。

上面的解释,解释了$BASHPID变量。

问题:哪些情况?

答案1

BASHPIDbash 联机帮助页的描述中提供了一个示例:

   BASHPID
          Expands to the process id of the  current  bash  process.   This
          differs  from  $$ under certain circumstances, such as subshells
          that do not require bash to be re-initialized.

下面是一个子 shell 的示例,它输出变量的内容以及子 shell 外部$$的内容。BASHPID

$ echo $(echo $BASHPID $$)      $$       $BASHPID
              25680    16920    16920    16920
#             |        |        |        |
#             |        |        |        -- $BASHPID outside of the subshell
#             |        |        -- $$ outside of the subshell
#             |        -- $$ inside of the subshell
#             -- $BASHPID inside of the subshell

答案2

子壳。$$由 POSIX 指定,并且始终保留原始 shell 进程的值。$BASHPID是 Bash 特定的变量,并且始终是取消引用该变量的进程的值(计算子 shell)。

 $ f() { printf '%s: %d, %d\n' "$1" $$ $BASHPID; };
 $ ${BASH_VERSION+shopt -s lastpipe}; set +m;
 $ f 1 >&2 | f 2
2: 31490, 31490
1: 31490, 32545

我确实设法说服 mksh 维护者添加BASHPID到最新版本,因此它在某种程度上是可移植的。也可以BASHPID在许多平台上自行在 ksh93 中实现。

相关内容