如何从.bat文件中转义PowerShell双引号

时间:2015-07-22 23:33:57

标签: powershell batch-file escaping

我尝试使用从Windows 7中的bat文件运行的PowerShell命令,用两个双引号替换文件(temp1.txt)中的所有双引号:

powershell -Command "(gc c:\temp\temp1.txt) -replace '\"', '\"\"' | Out-File -encoding UTF8 c:\temp\temp2.txt"

我一直收到错误:

 'Out-File' is not recognized as an internal or external command.

当我更改命令以替换字母" a"使用字母" b",它可以正常工作:

powershell -Command "(gc c:\temp\temp1.txt) -replace 'a', 'b' | Out-File -encoding UTF8 c:\temp\temp2.txt"

我需要转义双引号,因为整个powershell -Command在双引号字符串中。你怎么逃避双重报价?

2 个答案:

答案 0 :(得分:6)

嗯,这里你需要在双引号字符串中的命令行中转义"。从我的测试来看,唯一可行的是引用参数中的四重双引号""""

powershell.exe -command "echo '""""X""""'"

那么你的命令行应该是:

powershell -Command "(gc c:\temp\temp1.txt) -replace '""""', '""""""""' | Out-File -encoding UTF8 c:\temp\temp2.txt"

还有另一种方法可以使用PowerShell处理此问题,假设您不想将这些命令放在文件中并以此方式调用它:使用-EncodedCommand。这使您可以对整个命令或脚本进行base64编码,并将其作为单个参数传递给命令行。

所以这是你的原始命令:

(gc c:\temp\temp1.txt) -replace '"', '""' | Out-File -encoding UTF8 c:\temp\temp2.txt

这是一个编码它的脚本:

$c = @"
(gc c:\temp\temp1.txt) -replace '"', '""' | Out-File -encoding UTF8 c:\temp\temp2.txt
"@
$b = [System.Text.Encoding]::Unicode.GetBytes($c)
$e = [System.Convert]::ToBase64String($b)

$e现在包含:

  

KABnAGMAIABjADoAXAB0AGUAbQBwAFwAdABlAG0AcAAxAC4AdAB4AHQAKQAgAC0AcgBlAHAAbABhAGMAZQAgACcAIgAnACwAIAAnACIAIgAnACAAfAAgAE8AdQB0AC0ARgBpAGwAZQAgAC0AZQBuAGMAbwBkAGkAbgBnACAAVQBUAEYAOAAgAGMAOgBcAHQAZQBtAHAAXAB0AGUAbQBwADIALgB0AHgAdAA =

所以你的新命令行可以是:

powershell.exe -encodedCommand KABnAGMAIABjADoAXAB0AGUAbQBwAFwAdABlAG0AcAAxAC4AdAB4AHQAKQAgAC0AcgBlAHAAbABhAGMAZQAgACcAIgAnACwAIAAnACIAIgAnACAAfAAgAE8AdQB0AC0ARgBpAGwAZQAgAC0AZQBuAGMAbwBkAGkAbgBnACAAVQBUAEYAOAAgAGMAOgBcAHQAZQBtAHAAXAB0AGUAbQBwADIALgB0AHgAdAA=

无需担心逃避任何事情。

答案 1 :(得分:0)

对于PowerShell,转义字符非常重要。试试这个:

powershell -Command "(gc c:\temp\temp1.txt) -replace `", `"`" | Out-File -encoding UTF8 c:\temp\temp2.txt"