bat文件中调用传参的问题
Posted chucklu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bat文件中调用传参的问题相关的知识,希望对你有一定的参考价值。
Conclusion
In general, we can safely pass arbitrary command line arguments to programs, provided we take a few basic precautions.
Do:
- Always escape all arguments so that they will be decoded properly by CommandLineToArgvW, perhaps using my ArgvQuote function above.
- After step 1, then if and only if the command line produced will be interpreted by cmd, prefix each shell metacharacter (or each character) with a
^
character.
Do not:
- Simply add quotes around command line argument arguments without any further processing.
- Allow cmd to ever see an unescaped
"
character.
Notes
1 Worse.
2 You did follow my links above, yes?
3 I know you didn‘t.
4 Just to be clear: CommandLineFromArgvW neither knows nor cares about cmd‘s metacharacters and looks only for "
and .
以上是关于bat文件中调用传参的问题的主要内容,如果未能解决你的问题,请参考以下文章