kingming 当前离线
列兵
评分人数
terse 当前离线
中将
gc a.txt | group |?{$_.Count -gt 4}| select -Exp name |sc -Path b.txt复制代码
TOP
bailong360 (zhonghua)当前离线
上尉
@gawk "!(a[$0]++-5)" 1.txt>2.txt复制代码
回家路上 当前离线
少尉
@echo off&setlocal enabledelayedexpansion (for /f "delims=" %%a in (1.txt) do ( set /a "_%%a+=1" if "!_%%a!"=="6" echo;%%a ))>2.txt pause复制代码
pcl_test 当前离线
荣誉版主
::先下载http://batch-cn.qiniudn.com/tool/gawk.exe gawk "{a[$0]++}END{for(i in a)if(a[i]>5)print i}" "1.txt">"2.txt"复制代码
尘丶 当前离线
四级士官
@echo off&setlocal enabledelayedexpansion for /f "delims=" %%a in (1.txt) do ( set /a _%%a+=1 if !_%%a!==6 echo;%%a ) pause复制代码