Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有一种简单的方法来检测通过命令行传递到批处理文件的选项/开关?我正在寻找类似sh's 和bash's 的东西getopts。
sh
bash
getopts
不,没有。
(批处理文件只能看到 %0、%1、%2 等和 %*,以及%~d0、%~f1、%~x2 等变体。)