1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 05:02:10 +02:00
tldr/pages.ko/common/in2csv.md
HoJeong Im f5ac8fe874
in2csv, indent: add Korean translation (#14685)
* in*: add Korean translation

* fix, remove: fix in2csv
2024-11-08 15:57:31 +09:00

492 B

in2csv

다양한 표 데이터 형식을 CSV로 변환. csvkit에 포함. 더 많은 정보: https://csvkit.readthedocs.io/en/latest/scripts/in2csv.html.

  • XLS 파일을 CSV로 변환:

in2csv {{data.xls}}

  • DBF 파일을 CSV 파일로 변환:

in2csv {{data.dbf}} > {{data.csv}}

  • 특정 시트를 XLSX 파일에서 CSV로 변환:

in2csv --sheet={{시트_이름}} {{data.xlsx}}

  • JSON 파일을 in2csv로 파이프:

cat {{data.json}} | in2csv -f json > {{data.csv}}