Old.txt
に含まれる
Apple
orange
banana
そしてNew.txt
には
Apple
orange
banana
grape
lemon
grep
コマンドを使用して、New.txt
に追加された新しいコンテンツにアクセスできます。
grep -Fxvf Old.txt New.txt > difference.txt
現在、difference.txt
には
grape
lemon
Windowsでは、私は試しました
findstr /rvc:Old.txt New.txt > difference.txt
違いを見つけるためにOld.txt
の内容も追加します。 Windowsで同等のコマンドを作成するにはどうすればよいですか?
DOS
findstr
は次のフラグで使用できます:-
/v : Prints only lines that do not contain a match.
/g: file : Gets search strings from the specified file.
コマンドは次のようになります:-
C:\Users\dude\Desktop>findstr /v /g:Old.txt New.txt >difference.txt
次に、type
コマンドを使用してファイル出力を確認します。 cat
のLinux
に相当します。
C:\Users\dude\Desktop>type difference.txt
grape
lemon
PCへのインストールが制限されていない限り、- GnuWin32 などの* nixライクなツールのポートのインストールを検討し、引き続きgrepを使用してください。