娜美 当前离线
六级士官
1 2 3 4 1 2 3 4 5 1 2 4 0复制代码
TOP
Five66 当前离线
上尉
Get-Content 1.txt | group-object {($_ -split ' ')[1,2] -join ''} | %{$_.group[0]} | sc 2.txt cmd /c "echo.>>2.txt"复制代码
(Get-Content 1.txt | group-object {($_ -split ' ')[1,2] -join ''} | %{$_.group[0]} | sc 2.txt);cmd /c "echo.>>2.txt"复制代码
还有种不进行排序的,可能更快更直观更自由点 Five66 发表于 2023-8-3 20:57
Get-Content 1.txt | group {($_ -split ' ')[1,2] -join ''} | %{$_.group[0]} | sc 2.txt复制代码
Get-Content 1.txt | sort -unique {($_ -split ' ')[1,2] -join ''} | sc 2.txt复制代码
Get-Content 1.txt | sort -unique {$_.split(' ')[1,2] -join ''} | sc 2.txt复制代码
1 2 3 1 2 3 1 0 3复制代码
xczxczxcz (Tα酱油路过)当前离线
中尉