1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-23 12:55:24 +02:00

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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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}}`

16
pages.ko/common/indent.md Normal file
View file

@ -0,0 +1,16 @@
# indent
> 공백을 삽입하거나 삭제하여 a C/C++ 프로그램의 모양을 변경.
> 더 많은 정보: <https://www.gnu.org/software/indent/>.
- Linux 스타일 가이드에 따라 C/C++ 소스 형식을 지정하고, 원본 파일을 자동으로 백업한 후, 들여쓰기된 버전으로 변경:
`indent --linux-style {{경로/대상/소스.c}} {{경로/대상/또다른_소스.c}}`
- GNU 스타일에 따라 C/C++ 소스 형식을 지정하고, 들여쓰기된 버전을 다른 파일에 저장:
`indent --gnu-style {{경로/대상/소스.c}} -o {{경로/대상/들여쓰기된_소스.c}}`
- Kernighan & Ritchie (K&R) 스타일에 따라 C/C++ 소스 형식을 지정하고, 탭이 없으며, 들여쓰기당 공백 3개, 줄바꿈은 120자:
`indent --k-and-r-style --indent-level3 --no-tabs --line-length120 {{경로/대상/소스.c}} -o {{경로/대상/들여쓰기된_소스.c}}`