npm:package.json中的脚本,如何处理空格

时间:2017-04-29 15:56:15

标签: json shell npm package.json

尝试在package.json文件中使其工作

"zip": "C:\\Program Files\\7-Zip\\7z.exe a -tzip -mx9 yes.zip folder\\*"

但由于

,它无法正常工作
'C:\Program\' is not recognized as an internal or external command,

我已尝试使用相同的非工作结果

"zip": "C:\\Program\\ Files\\7-Zip\\7z.exe a -tzip -mx9 yes.zip folder\\*"
"zip": "\"C:\\Program Files\\7-Zip\\7z.exe a -tzip -mx9 yes.zip folder\\*\""
"zip": "\"C:\\Program\\ Files\\7-Zip\\7z.exe a -tzip -mx9 yes.zip folder\\*\""

我该怎么做?

由于

1 个答案:

答案 0 :(得分:1)

通过在正确的位置添加引号来解决

"zip": "C:\\\"Program Files\"\\7-Zip\\7z.exe a -tzip -mx9 yes.zip folder\\*"