从批处理文件到 firefox 和双引号中的 google

From batch file to firefox and google in double quotes

我在 Windows 批处理文件中使用以下命令:

"C:\Program Files (x86)\Mozilla Firefox\firefox.exe" https://www.google.com/search?q="'FIFA WORLD CUP 2018'"

它搜索:

'FIFA WORLD CUP 2018'

如何让它搜索

"FIFA WORLD CUP 2018"

即双引号中的整个短语?

我尝试了不同的组合,例如 '", "" or '' or \"\' 等,但其中 none 似乎有效。

将它放在三个双引号中,例如 """ 应该可以解决问题。否则只需尝试 \" 也应该有效。