리눅스 두 파일 행 차집합

Jmnote (토론 | 기여)님의 2024년 2월 21일 (수) 15:59 판 (새 문서: ==개요== ;리눅스 파일 내용 차집합 {{소스헤더|A}} <syntaxhighlight lang='console'> root@wsl:~# cat a.txt 11 22 33 44 55 </syntaxhighlight> {{소스헤더|B}} <syntaxhi...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요

리눅스 파일 내용 차집합
A
root@wsl:~# cat a.txt
11
22
33
44
55
B
root@wsl:~# cat b.txt
22
44
66
A-B
root@wsl:~# comm -23 a.txt b.txt
11
33
55
B-A
root@wsl:~# comm -23 b.txt a.txt
66

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}