前端之家收集整理的这篇文章主要介绍了
批处理文件 – DOS:找到一个字符串,如果找到,则运行另一个脚本,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想使用DOS在
文件中找到一个字符串:
例如
find “string” status.txt
当找到它时,我想运行一个批处理文件。
这样做最好的方法是什么?
@echo off
cls
MD %homedrive%\TEMPBBDVD\
CLS
TIMEOUT /T 1 >NUL
CLS
systeminfo >%homedrive%\TEMPBBDVD\info.txt
cls
timeout /t 3 >nul
cls
find "x64-based PC" %homedrive%\TEMPBBDVD\info.txt >nul
if %errorlevel% equ 1 goto 32bitsok
goto 64bitsok
cls
:commandlineerror
cls
echo error,command Failed or you not are using windows OS.
pause >nul
cls
exit
:64bitsok
cls
echo done,system of 64 bits
pause >nul
cls
del /q /f %homedrive%\TEMPBBDVD\info.txt >nul
cls
timeout /t 1 >nul
cls
RD %homedrive%\TEMPBBDVD\ >nul
cls
exit
:32bitsok
cls
echo done,system of 32 bits
pause >nul
cls
del /q /f %homedrive%\TEMPBBDVD\info.txt >nul
cls
timeout /t 1 >nul
cls
RD %homedrive%\TEMPBBDVD\ >nul
cls
exit
原文链接:https://www.f2er.com/windows/372328.html