두 개의 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