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.
如果 a & b 相等,我希望脚本继续到下一行,而不必执行 a goto :label1。这可能吗?
goto :label1
反过来写:
IF NOT "%a%"=="%b%" goto label2 ::the label1 stuff
所以如果 a 和 b 相等,label2 goto 将不会运行,它会处理 label1 的东西