在批处理文件中转义逗号以执行graphicsmagick命令
我在 .bat 文件中得到了行 gm -mogrify -level 30%,10,100% Edit.jpg
,当我手动键入它时,该行可以完美执行。但是,当作为批处理脚本执行时,它会在参数的第一个逗号处结束该行。
我应该如何重写它才能使其工作?
谢谢。
I've got the line gm -mogrify -level 30%,10,100% Edit.jpg
in a .bat file that executes perfectly when I type it manually. However, it ends the line on the first comma of the argument when executed as a batch script.
How should I rewrite this to make it work?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
%
是批处理脚本中的特殊字符。请使用%%
代替。%
is a special character in batch script. Use%%
instead.