2つのtxtファイルがあります。
ファイル1.txt:
[email protected]
[email protected]
[email protected]
[email protected]
...
ファイル2.txt:
[email protected]
[email protected]
ファイルIwouldhave.txt:
[email protected]
[email protected]
...
file2.txtのアドレスをfile1.txtとして削除したいと思います。
どうすればいいですか?
ベストアンサー1
grep
一致(または一致しない)するパターンのリストを含むファイルを提供し、一致を反転できます。
grep -vFx -f file2.txt file1.txt