标题: [其他] 【已解决】批处理命令for...in...do求助 [打印本页]
作者: chouxia 时间: 2014-11-16 13:52 标题: 【已解决】批处理命令for...in...do求助
本帖最后由 chouxia 于 2015-4-16 16:31 编辑
for /f %%z in ('findstr /s /i /m "del=0" *.txt') do (......)
如果条件符合del=0.程序运行。
如何在条件不符合的时候结束循环或者goto?
作者: DAIC 时间: 2014-11-16 15:41
- @echo off
- findstr /s /i /m "del=0" *.txt && goto yes || goto no
- goto end
-
- :yes
- echo 程序运行
- goto end
-
- :no
- echo 条件不符合
- goto end
-
- :end
- pause
复制代码
欢迎光临 批处理之家 (http://bbs.bathome.net/) |
Powered by Discuz! 7.2 |