hongxin 当前离线
列兵
idwma 当前离线
少校
@echo off for /f "delims=" %%a in ('dir/b/s "C:\txtfile\*.txt"') do ( findstr "^TP$" "%%a"&&move "%%a" "C:\TPfile\" ) pause复制代码
TOP
qixiaobin0715 当前在线
大校
@echo off cd /d C:\txtfile for /f "delims=" %%a in ('findstr /mbe "TP" *.txt') do move "%%a" "C:\TPfile" pause复制代码