@ECHO off
chcp 65001
set i=1
:LOOP
adb shell xxx.xxxx
set now_time=%time:~0,2%:%time:~3,2%:%time:~6,2% & set /a i=i+1 & call echo 当前运行第%i%次,当前时间为%now_time% & GOTO LOOP
pause
通用循环bat脚本
阅读 47
2022-02-14
@ECHO off
chcp 65001
set i=1
:LOOP
adb shell xxx.xxxx
set now_time=%time:~0,2%:%time:~3,2%:%time:~6,2% & set /a i=i+1 & call echo 当前运行第%i%次,当前时间为%now_time% & GOTO LOOP
pause
相关推荐
精彩评论(0)