Esccc 当前离线
列兵
aloha20200628 当前在线
上尉
TOP
qixiaobin0715 当前离线
大校
findstr /xvg:File1.txt File2.txt>File3.txt findstr /xvg:File2.txt File1.txt>>File3.txt复制代码
@echo off setlocal enabledelayedexpansion for /f "delims=" %%a in ('type 1.txt^|sort') do ( if not "!str!"=="%%a" ( echo,%%a>>2.txt set n=1 ) else ( if !n! equ 1 echo,%%a>>3.txt set n=0 ) set str=%%a ) pause复制代码
评分人数
hfxiang 当前离线
gawk "x[$0]++" 1.txt复制代码