在Windows批处理文件中:
if something==something (
run cmd
) else (
if returned false, what do I put in here to continue to next 'if'?
)
if something2==something2 (
etc etc.
)
如果第一个语句返回false,则转到else
,我在else
内放置什么才能继续下一个if
?
答案 0 :(得分:0)
if something==something (
run cmd
)
if something2==something2 (
etc etc.
)