如何在Powershell中扩展表达式字符串

时间:2019-07-13 20:01:57

标签: 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 在变量中,然后在命令中以后展开它。

0 个答案:

没有答案