标题: [文本处理] 【已解决】批处理搜索关键字,有就跳到A(向下运行),无就跳到B(向右运行)。谢谢 [打印本页]
作者: yyz219 时间: 2021-12-22 03:53 标题: 【已解决】批处理搜索关键字,有就跳到A(向下运行),无就跳到B(向右运行)。谢谢
本帖最后由 yyz219 于 2021-12-27 09:02 编辑
- 完美解决了
-
- @echo off
- cd /d "%~dp0"
- findstr /i "试一试" "1.txt" >nul
- if errorlevel 1 (
- goto :B
- ) else (
- goto :A
- )
-
- :A
- echo 向下运行
- goto :End
-
- :B
- echo 向右运行
- goto :End
-
- :End
- pause
复制代码
作者: Batcher 时间: 2021-12-22 13:26
回复 1# yyz219
请参考Q-04把bat文件保存为ANSI编码:
https://mp.weixin.qq.com/s/6lbb97qUOs1sTyKJfN0ZEQ- @echo off
- cd /d "%~dp0"
- findstr /i "试一试" "1.txt" >nul
- if errorlevel 1 (
- goto :B
- ) else (
- goto :A
- )
-
- :A
- echo 向下运行
- goto :End
-
- :B
- echo 向右运行
- goto :End
-
- :End
- pause
复制代码
作者: yyz219 时间: 2021-12-22 17:25
回复 2# Batcher
非常感谢
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |