标签: powershell string-interpolation variable-expansion
是否有像complet-string这样的comlet?
$a="ab cd" $command = 'dir $a' Write-Host (expand-string $command)
预期:
dir abcd
注意,我知道我可以只使用$command="dir $a"来扩展字符串,但这不是我想要的,我需要将字符串dir $a保存为 literal 在变量中,然后在命令中以后展开它。
$command="dir $a"
dir $a