如果首先'if'返回false,我如何继续下一个'if'语句?

时间:2017-04-27 16:07:21

标签: windows batch-file cmd windows-10

在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

1 个答案:

答案 0 :(得分:0)

这是你想要的吗?只需在第一个if块关闭后放下一个语句。我错过了什么吗?

if something==something (
  run cmd
)

if something2==something2 (
 etc etc.
)