[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: value of $$ in backgrounded process
From: |
kovacs istvan |
Subject: |
Re: value of $$ in backgrounded process |
Date: |
Thu, 7 Oct 2021 11:26:27 +0200 (CEST) |
Thanks for the answers!
The part I was missing is that a backgrounded process:
echo bla &
is run in a subshell.
Somehow I managed to miss that information in the "Asynchronous Lists" chapter:
"If a command is terminated by the control operator <ampersand> ( '&' ), the
shell shall execute the command asynchronously in a >>>subshell<<<."
https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_09_03_02