Rexxer

Some tips for me and other

CMD: find a string and run another script

find /c "string" file
if %errorlevel% equ 1 goto notfound
echo found
goto done
:notfound
echo notfound
goto done
:done

Leave a Reply