wljboy 当前离线
列兵
CrLf 当前离线
论坛巡查
@echo off findstr /m /s www d:\*.txt>tmp dir /b /a-d d:\*.txt|findstr /v /x /g:tmp pause复制代码
TOP
powerbat 当前离线
大校
评分人数
yangfengoo 当前离线
上尉
@findstr /m /s /v www d:\*.txt复制代码
@echo off for /f "tokens=*" %%a in ('dir /s/b d:\*.txt') do findstr /i "www" "%%~a">nul||echo %%~a pause复制代码
apang 当前离线
上将
@echo off for /f "delims=" %%a in ('dir /a-d /b /s d:\*.txt') do ( findstr "www" "%%a">nul || echo %%a ) pause复制代码