Skip to content

Expand Variables In Process Expansions

Michael Aaron Murphy requested to merge mmstick:variables_in_subshells into master

Adds the ability to pass variables into subshells by expanding inner variables before performing process expansion. Therefore, the following command is now valid:

let A = "abc"; echo $(echo ${A} $A$A $(echo $A))

Merge request reports