bat 在文件中搜索字符串
发布网友
发布时间:2022-04-23 08:04
我来回答
共1个回答
热心网友
时间:2022-05-17 10:42
代码:
@echo off
set file="D:\search_data.txt"
:main
if not exist %file% cd.>>%file%
set /p str=Please input str:
find ^"%str%^" %file% >>nul &&echo find.||(echo,%str%>>%file%&&echo,Add '%str%' into %file%.)
echo,&goto main