Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- tab
- error
- computer
- Vim
- code
- pip
- natural_language_processing
- Statistics
- review
- terminal
- seq2seq
- deeplearning
- linux
- cs231n
- slideshare
- nlp
- Stanford
- paper_review
- json
- Standford
- gensim
- cs224n
- text
- github
- language_model
- Ai
- install
- git
- machinelearning
- computer_setting
Archives
- Today
- Total
NLP/AI/Statistics
terminal에서 여러 텍스트 파일 합치기 본문
텍스트 파일이 여러개 나누어져 있을 때 이를 터미널에서 한번에 합칠 수 있다.
예를 들어, example1.txt example2.txt example3.txt가 있을 때,
위의 세개 파일을 total.txt로 합치기 위해서는 아래와 같이 cat을 실행하면 된다.
$ cat example*.txt > total.txt
이 때 세개의 파일 이름이 맨 뒤 숫자 이외에 동일하여 example*.txt로 표기하였는데,
이름이 제각각일 경우엔 합치길 원하는 파일 명을 나열한 후 >(화살표) 로 하나의 텍스트 파일을 만들면 된다.
예를 들어, a.txt b.txt c.txt를 d.txt로 합칠 경우 아래와 같다.
$ cat a.txt b.txt c.txt > d.txt
'Computer Setting > Linux & Vim' 카테고리의 다른 글
vim에서 tab이 공백으로 처리되는 경우 (0) | 2021.10.19 |
---|---|
tar.gz 압축하기 및 압축해제 (0) | 2021.06.15 |
Ubuntu 화면 영상 녹화 (0) | 2021.06.08 |
Vim에서 Tab 크기 조절 (0) | 2021.05.18 |
Linux disk 남은 용량 확인 (0) | 2021.03.31 |
Comments