DAIC 当前离线
中将
powershell "Get-Content '1.txt' | Group-Object | ForEach-Object {$_.Name + ' ' + $_.Count} | Out-File '2.txt'"复制代码
评分人数
TOP
powershell "(Get-Content '1.txt').Split('`n').Split('') | Group-Object | ForEach-Object {$_.Name + ' ' + $_.Count} | Out-File '2.txt'"复制代码