반응형
데이터에서 구분자를 변경하는 방법
데이터의 delimeter가 항상 같지 않기 때ㅔ문에 알아 놓으면 좋은 방법!
1) tab을 ,로 변경하는 방법
$ sed 's/\t/,/g' inputfile > outputfile
2) ,를 tab으로 변경하는 방법
$ sed 's/,/\t/g' inputfile > outputfile
$ sed 's/::/,/g' ratings.dat > ratings.csv
- 참고
- https://stackoverflow.com/questions/3509332/how-to-convert-a-tab-separated-file-into-comma-separated-file
반응형
'Programming > Shell' 카테고리의 다른 글
[Shell] 데이터에서 구분자 변경하는 방법 (0) | 2018.10.20 |
---|---|
[Shell] 데이터 특정 퍼센트로 나누는 방법 (0) | 2018.10.20 |
[Linux] Zip 분할 압축 하는 방법 (0) | 2018.03.18 |
[Shell] 데이터 특정 퍼센트로 나누는 방법 (0) | 2018.03.18 |
쉘(Shell)에서 중복단어 제거하기 (0) | 2017.12.10 |