You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We use subshells ($( ... ) and ( ... )) in a few places, and those behave like sub-processes wrt execution environment.
letcmd_wrapperc=(* wraps c with redirections *)in
....
cmd_wrapper "cd /tmp";
cmd_wrapper "pwd"; (* <- this is not in /tmp because the cmd_wrapper made a subshell that cancels the "cd" when finishing. *)
....
How do/we document/warn about that?
The text was updated successfully, but these errors were encountered:
We use subshells (
$( ... )
and( ... )
) in a few places, and those behave like sub-processes wrt execution environment.How do/we document/warn about that?
The text was updated successfully, but these errors were encountered: