PS C:\Documents and Settings\Eden\PowerShell\test3> gc a 10/05766798607,11/20050325191329,29/0.1,14/05766798607 10/05767158557,11/20050325191329,29/0.08,14/05767158557 PS C:\Documents and Settings\Eden\PowerShell\test3> gc b 05766798607 05766798608 05766798609 |
PS C:\Documents and Settings\Eden\PowerShell\test3> $hash = @{} PS C:\Documents and Settings\Eden\PowerShell\test3> gc b | awk { $hash[$1] = $true } PS C:\Documents and Settings\Eden\PowerShell\test3> gc a | awk -delimiter '[/,]' { if ($hash[$2]) {$0} } 10/05766798607,11/20050325191329,29/0.1,14/05766798607 |
PS C:\Documents and Settings\Eden\PowerShell\test5> gc a 1000 北京市 地级 北京市 北京市 1100 天津市 地级 天津市 天津市 1210 石家庄市 地级 石家庄市 河北省 1210 晋州市 县级 石家庄市 河北省 1243 滦县 县级 唐山市 河北省 1244 滦南县 县级 唐山市 河北省 PS C:\Documents and Settings\Eden\PowerShell\test5> gc b 110000,北京市 120000,天津市 130000,河北省 130131,平山县 130132,元氏县 |
PS C:\Documents and Settings\Eden\PowerShell\test5> $hash=@{} PS C:\Documents and Settings\Eden\PowerShell\test5> gc a | awk { $hash[$2] = $1 } PS C:\Documents and Settings\Eden\PowerShell\test5> gc b | awk -delimiter ',' { if ($hash[$2]) {$0.Trim() + "," + $hash[$2]} else {$0} } 110000,北京市,1000 120000,天津市,1100 130000,河北省 130131,平山县 130132,元氏县 |
PS C:\Documents and Settings\Eden\PowerShell\test6> gc file1 AAA 001 1000.00 BBB 001 2000.00 DDD 002 4000.00 EEE 002 5000.00 FFF 003 6000.00 PS C:\Documents and Settings\Eden\PowerShell\test6> gc file2 01 1111 AAA WW001 $$$$ 1000.00 02 2222 BBB GG001 %%%% 2000.00 03 3333 CCC JJ001 **** 3000.00 04 4444 DDD FF002 &&&& 4000.00 05 5555 EEE RR002 @@@@ 5000.00 06 666 FFF UU003 JJJJ 6000.00 07 777 III II005 PPPP 7000.00 08 8888 TTT TT008 TTTT 8000.00 |
PS C:\Documents and Settings\Eden\PowerShell\test6> $hash=@{} PS C:\Documents and Settings\Eden\PowerShell\test6> gc file1 | awk {$hash["${1}x${2}x${3}"] = $true} PS C:\Documents and Settings\Eden\PowerShell\test6> gc file2 | ?{ $_ | awk {$hash["${3}x$($4.substring(2,3))x${6}"]} } 01 1111 AAA WW001 $$$$ 1000.00 02 2222 BBB GG001 %%%% 2000.00 04 4444 DDD FF002 &&&& 4000.00 05 5555 EEE RR002 @@@@ 5000.00 06 666 FFF UU003 JJJJ 6000.00 |
欢迎光临 批处理之家 (http://bbs.bathome.net/) | Powered by Discuz! 7.2 |