Answers:
BASHPID
bash联机帮助页的描述中提供了一个示例:
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的示例,它输出变量$$
的内容以及BASHPID
子shell外部的内容。
$ 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
子壳。$$
由POSIX指定,并且始终保留原始Shell进程的值。$BASHPID
是特定于Bash的变量,并且始终是从中取消引用该变量的进程的值,其中包括子外壳数。
$ 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中实现。
$BASHPID
是BASH 4的新功能。如果您正在使用BASH 3.x,则必须使用$$