Windows 批处理文件的 getopts?
有没有一种简单的方法来检测通过命令行传递到批处理文件的选项/开关?我正在寻找类似于 sh
和 bash
的 getopts
。
Is there an easy way to detect options/switches passed in to a batch file via the command line? I'm looking for something along the lines of sh
's and bash
's getopts
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,没有。
(批处理文件只能看到%0、%1、%2等和%*,加上%~d0、%~f1、%~x2 等变体)
No, there isn't.
(The batchfile only sees %0, %1, %2, etc. and %*, plus variations such as %~d0, %~f1, %~x2 etc.)