Nach der Antwort von @Gilles, auf die ich bei der Lösung eines anderen Problems gestoßen bin, habe ich ein schnelles Testprogramm zusammengestellt, das die Theorie untermauert, dass die richtige Antwort lautet:
MYPID=$(exec sh -c 'echo $PPID')
Ich habe festgestellt, dass es Zeiten gibt, in denen dies exec
nicht erforderlich ist, aber ich habe bestätigt, dass es die einzige Möglichkeit ist, in allen von mir ausprobierten Shells immer die richtige PID zu erhalten. Hier ist mein Test:
#!/bin/sh
pids() {
echo ------
pstree -pg $PPID
echo 'PPID = ' $PPID
echo '$$ = ' $$
echo 'BASHPID =' $BASHPID
echo -n 'sh -c echo $PPID = '; sh -c 'echo $PPID'
echo -n '$(sh -c '\''echo $PPID'\'') = '; echo $(sh -c 'echo $PPID')
echo -n '$(exec sh -c '\''echo $PPID'\'') = '; echo $(exec sh -c 'echo $PPID')
echo -n 'p=$(sh -c '\''echo $PPID'\'') = '; p=$(sh -c 'echo $PPID') ; echo $p
echo -n 'p=$(exec sh -c '\''echo $PPID'\'') = '; p=$(exec sh -c 'echo $PPID') ; echo $p
}
pids
pids | cat
echo -e "$(pids)"
und seine Ausgabe
------
bash(5975,5975)---pidtest(13474,13474)---pstree(13475,13474)
PPID = 5975
$$ = 13474
BASHPID = 13474
sh -c echo $PPID = 13474
$(sh -c 'echo $PPID') = 13474
$(exec sh -c 'echo $PPID') = 13474
p=$(sh -c 'echo $PPID') = 13474
p=$(exec sh -c 'echo $PPID') = 13474
------
bash(5975,5975)---pidtest(13474,13474)-+-cat(13482,13474)
`-pidtest(13481,13474)---pstree(13483,13474)
PPID = 5975
$$ = 13474
BASHPID = 13481
sh -c echo $PPID = 13481
$(sh -c 'echo $PPID') = 13481
$(exec sh -c 'echo $PPID') = 13481
p=$(sh -c 'echo $PPID') = 13481
p=$(exec sh -c 'echo $PPID') = 13481
------
bash(5975,5975)---pidtest(13474,13474)---pidtest(13489,13474)---pstree(13490,13474)
PPID = 5975
$$ = 13474
BASHPID = 13489
sh -c echo $PPID = 13489
$(sh -c 'echo $PPID') = 13492
$(exec sh -c 'echo $PPID') = 13489
p=$(sh -c 'echo $PPID') = 13495
p=$(exec sh -c 'echo $PPID') = 13489
Ersetzen Sie Ihre Lieblingsschale im shebang: sh
, bash
, mksh
, ksh
, etc ...
Ich verstehe nicht, warum die Fälle 2 und 3 unterschiedliche Ergebnisse liefern oder warum sich die Ergebnisse für Fall 3 zwischen den Schalen unterscheiden. Ich habe versucht bash
, ksh
und mksh
auf Arch Linux FWIW.