Windows下bat批处理脚本常用场景整理,持续更新中。。。

Windows下bat批处理脚本常用场景整理,持续更新中。。。

一、Winodws下使用bat脚本对结果进行筛选

例如:在筛选出来的结果中,筛选是否有"$G"字段

adb shell "tail -n 10 xxx.log"  | findstr /r "$G"

二、Winodws下bat批处理中如何判断参数中含有某些字符串

例1:在筛选出来的结果中,判断是否有"$G"字段

adb shell "tail -n 10 xxx.log"  |findstr /r "$G" >nul
if %errorlevel% equ 0 (
echo ok
) else (
echo not ok

例2:bat批处理中如何判断参数中含有某些字符串 - 开发技术 - 亿速云 (yisu.com)

if "%1"含有"abc"  @echo OK
if "%1"含有"def"  @echo NG

代码如下:
@echo off
echo %1|findstr "^abc" >nul
if %errorlevel% e

你可能感兴趣的:(Android,adb&批处理总结,bat脚本)