in2csv, indent: add Korean translation (#14685)

* in*: add Korean translation

* fix, remove: fix in2csv
This commit is contained in:
HoJeong Im
2024-11-08 15:57:31 +09:00
committed by GitHub
parent 19c6841a9d
commit f5ac8fe874
2 changed files with 37 additions and 0 deletions

21
pages.ko/common/in2csv.md Normal file
View File

@@ -0,0 +1,21 @@
# 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}}`