Expand Variables In Process Expansions
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))