📜  使用空格传递命令行参数 cmd - TypeScript 代码示例

📅  最后修改于: 2022-03-11 14:48:24.808000             🧑  作者: Mango

代码示例1
Wrap the whole command line argument between double quotes
for instance
cmd.exe> \"Client Updater.exe\" -i -s Role=\"Test Role\"
this command has Role as 2 words separated by a space.
This can be re-written as 
cmd.exe> "\"Client Updater.exe\" -i -s Role=\"Test Role\""