代码之家  ›  专栏  ›  技术社区  ›  Peter Mortensen icecrime

如何在批处理文件中转义和号?

  •  123
  • Peter Mortensen icecrime  · 技术社区  · 15 年前

    如何在批处理文件(或从 Windows命令行),以便使用 start 命令到 在URL中打开带符号的网页?

    双引号不适用于 开始 ;这将启动一个新的 改为命令行窗口。

    更新1 :Wael Dalloul的解决方案有效。此外,如果 有URL编码的字符(例如空格编码为 %20)在URL和 它在批处理文件中 则“%”必须是 编码为“%”。在这个例子中不是这样的。

    示例,从命令行( CMD.EXE ):

    start http://www.google.com/search?client=opera&rls=en&q=escape+ampersand&sourceid=opera&ie=utf-8&oe=utf-8
    

    将导致

    http://www.google.com/search?client=opera 
    

    在默认浏览器中打开并且在命令行窗口中出现这些错误:

    'rls' is not recognized as an internal or external command,
    operable program or batch file.
    'q' is not recognized as an internal or external command,
    operable program or batch file.
    'sourceid' is not recognized as an internal or external command,
    operable program or batch file.
    'ie' is not recognized as an internal or external command,
    operable program or batch file.
    'oe' is not recognized as an internal or external command,
    operable program or batch file.
    

    平台:Windows XP 64位SP2。

    7 回复  |  直到 7 年前
        1
  •  62
  •   Community CDub    7 年前

    从CMD :

    • & 是这样逃走的: ^& (基于@wael dalloul's answer )
    • % 不需要逃跑

    一个例子:

    start http://www.google.com/search?client=opera^&rls=en^&q=escape+ampersand%20and%20percentage+in+cmd^&sourceid=opera^&ie=utf-8^&oe=utf-8
    

    从批处理文件

    • & 是这样逃走的: ^ &; (基于@wael dalloul's 回答 )
    • % 是这样逃走的: %% (基于操作更新)

    一个例子:

    start http://www.google.com/search?client=opera^&rls=en^&q=escape+ampersand%%20and%%20percentage+in+batch+file^&sourceid=opera^&ie=utf-8^&oe=utf-8
    
        2
  •  133
  •   Peter Mortensen icecrime    12 年前

    & 用于分隔命令。因此您可以使用 ^ 为了逃避 & .

        3
  •  26
  •   rogerdpack    13 年前

    如果您提供一个伪第一个参数,您可以将其括在引号中。

    注意,在这种情况下,您需要提供一个伪第一个参数,如 start 将第一个参数视为新控制台窗口的标题(如果引用)。因此,以下内容应该有效(并在此处执行):

    start "" "http://www.google.com/search?client=opera&rls=en&q=escape+ampersand&sourceid=opera&ie=utf-8&oe=utf-8"
    
        4
  •  19
  •   Peter Mortensen icecrime    14 年前
    explorer "http://www.google.com/search?client=opera&rls=...."
    
        5
  •  11
  •   Denis Howe    9 年前

    命令

    echo this ^& that
    

    按预期工作,输出

    this & that
    

    命令

    echo this ^& that > tmp
    

    也可以,将字符串写入文件“tmp”。然而,在管道之前

    echo this ^& that | clip
    

    对^的解释完全不同。它试图将两个命令的输出“echo this”和“that”写入管道。回声将工作,然后“那”将给出一个错误。说

    echo this ^& echo that | clip
    

    将字符串“this”和“that”放在剪贴板上。

    没有^:

    echo this & echo that | clip
    

    第一个echo将写入控制台,只有第二个echo的输出将通过管道传输到clip(类似于“>tmp”重定向)。因此,当重定向输出时,^不会引用&而会导致在重定向之前而不是之后应用它。

    若要进行管道连接,必须对其进行两次报价

    echo this ^^^& that | clip
    

    如果将字符串放入变量中

    set m=this ^& that
    

    然后

    set m
    

    意志输出

    m=this & that
    

    但显而易见

    echo %m%
    

    失败,因为在Windows替换变量后,

    echo this & that
    

    它将此解析为一个新命令,并尝试执行“that”。

    在批处理文件中,可以使用 延迟膨胀 :

    setlocal enableDelayedExpansion
    echo !m!
    

    要输出到管道,我们必须用^&替换变量值中的所有&s,我们可以使用%var:from=to%语法:

    echo !m:^&=^^^&! | clip
    

    在命令行上,“cmd/v”启用延迟扩展:

    cmd /v /c echo !m!
    

    即使是在写管道的时候也可以

    cmd /v /c echo !m! | clip
    

    简单。

        6
  •  1
  •   Jaroslav Záruba    7 年前

    如果你需要 echo 包含一个和引号的字符串不会有帮助,因为您也会在输出中看到它们。在这种情况下,使用 for :

    for %a in ("First & Last") do echo %~a
    

    …在批处理脚本中:

    for %%a in ("First & Last") do echo %%~a
    

    for %%a in ("%~1") do echo %%~a
    
        7
  •  0
  •   be-ns    7 年前

    为将来的用户添加此

    如果文件名中有空格,并且有字符需要转义: 您可以使用单引号和双引号来避免命令中出现任何误用。

    scp ./'files name with spaces/internal folder with spaces/"text & files stored.txt"' .

    这个 ^ 字符以其他方式转义引号

    编辑以包括结束语 . 命令结束时