"리눅스 텍스트 파일 병합"의 두 판 사이의 차이

잔글 (Jmnote님이 리눅스 여러 텍스트 파일 병합 문서를 리눅스 텍스트 파일 병합 문서로 이동했습니다)
 
(같은 사용자의 중간 판 3개는 보이지 않습니다)
4번째 줄: 4번째 줄:
;리눅스 여러 텍스트 파일 합치기
;리눅스 여러 텍스트 파일 합치기


<syntaxhighlight lang='bash'>
cat 1.txt 2.txt 3.txt > merged.txt
</syntaxhighlight>
==예시==
<syntaxhighlight lang='console'>
<syntaxhighlight lang='console'>
testuser@localhost:~$ cat a.txt
testuser@localhost:~$ cat a.txt
33번째 줄: 38번째 줄:
* [[리눅스 cat]]
* [[리눅스 cat]]
* [[리눅스 cat 여러 파일 보기]]
* [[리눅스 cat 여러 파일 보기]]
* [[리눅스 구분자 적용하여 파일 합치기]]
* [[리눅스 구분자 넣으면서 텍스트 파일 병합]]
* [[윈도우 텍스트 파일 병합]]


[[분류: cat]]
[[분류: cat]]
[[분류: 텍스트]]

2022년 12월 1일 (목) 14:57 기준 최신판

1 개요[ | ]

리눅스 여러 파일 합치기
리눅스 텍스트 파일 병합
리눅스 여러 텍스트 파일 합치기
cat 1.txt 2.txt 3.txt > merged.txt

2 예시[ | ]

testuser@localhost:~$ cat a.txt
hello world
lorem ipsum
testuser@localhost:~$ cat b.txt
12345 67890
12345 67890
testuser@localhost:~$ cat a.txt b.txt
hello world
lorem ipsum
12345 67890
12345 67890
testuser@localhost:~$ cat a.txt b.txt > c.txt
testuser@localhost:~$ cat c.txt
hello world
lorem ipsum
12345 67890
12345 67890

3 같이 보기[ | ]

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