2
如果我運行通過以下方式Windows批處理文件:按名稱獲取Windows批處理文件的參數,而不是定位
myscript.bat -b test -c 789
或以下列方式:
myscript.bat -c 789 -b test
什麼是最好的方式可靠地獲得c
的價值?
如果我運行通過以下方式Windows批處理文件:按名稱獲取Windows批處理文件的參數,而不是定位
myscript.bat -b test -c 789
或以下列方式:
myscript.bat -c 789 -b test
什麼是最好的方式可靠地獲得c
的價值?
怎麼樣:
IF _%1==_b echo do something with %2
IF _%1==_c echo do something with %2
IF _%3==_b echo do something with %4
IF _%3==_c echo do something with %4
重複:HTTP://stackoverflow.com/questions/3973824/windows-bat-file-optional-argument-parsing – 2011-01-21 13:24:58