ximenhao 当前离线
列兵
881966 当前离线
一级士官
TOP
77七 当前在线
中校
terse 当前离线
中将
$a = [IO.File]::ReadAllLines('a.txt' ,[Text.Encoding]::Default) $b = [IO.File]::ReadAllLines('b.txt',[Text.Encoding]::Default) (diff $a $b).Where({ $_.SideIndicator -eq '=>'}).InputObject|Out-File 'c.txt' -Encoding default复制代码
@echo off for /f "delims=" %%b in ('type "b.txt"') do ( set _"%%b"=1 ) for /f "delims=" %%a in ('type "a.txt"') do ( if not defined _"%%a" ( >>c.txt echo,%%a ) ) pause复制代码