- #@&cls&powershell "type %~s0|out-string|iex"&pause&exit
- $a=@{}
- (gc aa.txt) -notmatch '姓名,工作时间,工作组'|%{
- $b=$_ -split ','
- if($a[$b[0]] -eq $null){$a[$b[0]]+=@{$b[2]=@($b[1])}}else{$a[$b[0]][$b[2]]+=@($b[1])}
- }
- $a.keys|%{$t=$_;$a[$_].keys|%{'{0},{1},{2}' -f $t,$([datetime]$a[$t][$_][-1]-[datetime]$a[$t][$_][0]),$_}}
复制代码
|