Currently command interpolations are parsed the same as string interpolations. However, these allow many more expressions. For example: ```julia run(`echo $'\a'`) # Char interpolation run(`echo $[1, 2, 3]`) # Array interpolation ```