1e3e 当前离线
三级士官
BAT-VBS 当前离线
少将
findstr /m /c:"21 17 16 6 24 23 25 2" "G:\ss\*.txt" >G:\result.txt复制代码
评分人数
TOP
BAT-VBS 发表于 2012-12-30 12:58
batman 当前离线
考官
荣誉版主
@echo off&setlocal enabledelayedexpansion for /r g:\ss %%a in (*.txt) do ( if /i "%%a" neq "g:\ss\2.txt" ( findstr /g:"g:\ss\2.txt" "%%a">nul if !errorlevel! equ 0 echo %%a ) ) pause>nul复制代码
batman 发表于 2012-12-30 16:29
Batcher 当前离线
管理员
@echo off (for /r g:\ss %%a in (*.txt) do ( if /i "%%a" neq "g:\ss\2.txt" ( findstr /m /g:"g:\ss\2.txt" "%%a">nul ) ))>G:\result.txt复制代码
terse 当前离线
中将
findstr /m /g:"2.txt" "*.txt"复制代码
findstr /m /s /g:"2.txt" "*.txt" >result.log复制代码