1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-09 15:35:43 +02:00

csvkit: remove page (#17464)

This commit is contained in:
Managor 2025-08-08 16:48:58 +03:00 committed by GitHub
parent 443020ffa1
commit ce4fa7dbc6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 0 additions and 63 deletions

View file

@ -1,21 +0,0 @@
# csvkit
> ابزاری برای کارکردن با فایل های CSV.
> همچنین ببینید: `csvclean`, `csvcut`, `csvformat`, `csvgrep`, `csvlook`, `csvpy`, `csvsort`, `csvstat`.
> اطلاعات بیشتر: <https://csvkit.readthedocs.io/en/0.9.1/cli.html>.
- اجرای یک دستور روی یک فایل CSV با جداکننده دلخواه:
`{{command}} -d {{delimiter}} {{path/to/file.csv}}`
- اجرای یک دستور روی یک فایل CSV با استفاده از tab به عنوان جداکننده:
`{{command}} -t {{path/to/file.csv}}`
- اجرای یک دستور روی فایل CSV با کاراکتر نقلی شخصی سازی شده:
`{{command}} -q {{quote_char}} {{path/to/file.csv}}`
- اجرای یک دستور روی یک فایل CSV بدون خط هدر:
`{{command}} -H {{path/to/file.csv}}`

View file

@ -1,21 +0,0 @@
# csvkit
> CSV 파일용 조작 도구 모음.
> 참고: `csvclean`, `csvcut`, `csvformat`, `csvgrep`, `csvlook`, `csvpy`, `csvsort`, `csvstat`.
> 더 많은 정보: <https://csvkit.readthedocs.io/en/0.9.1/cli.html>.
- 사용자 정의 구분 기호를 사용해 CSV 파일에 대해 명령을 실행:
`{{명령어}} -d {{구분자}} {{경로/대상/파일.csv}}`
- 탭을 구분 기호로 사용하여 CSV 파일에서 명령을 실행 (-d를 덮어씌움):
`{{명령어}} -t {{경로/대상/파일.csv}}`
- 사용자 정의 따옴표 문자를 사용하여 CSV 파일에서 명령을 실행:
`{{명령어}} -q {{따옴표_문자}} {{경로/대상/파일.csv}}`
- 헤더 행이 없는 CSV 파일에 대해 명령을 실행:
`{{명령어}} -H {{경로/대상/파일.csv}}`

View file

@ -1,21 +0,0 @@
# csvkit
> Manipulation toolkit for CSV files.
> See also: `csvclean`, `csvcut`, `csvformat`, `csvgrep`, `csvlook`, `csvpy`, `csvsort`, `csvstat`.
> More information: <https://csvkit.readthedocs.io/en/latest/cli.html>.
- Run a command on a CSV file with a custom delimiter:
`{{command}} {{[-d|--delimiter]}} {{delimiter}} {{path/to/file.csv}}`
- Run a command on a CSV file with a tab as a delimiter (overrides -d):
`{{command}} {{[-t|--tabs]}} {{path/to/file.csv}}`
- Run a command on a CSV file with a custom quote character:
`{{command}} {{[-q|--quotechar]}} {{quote_char}} {{path/to/file.csv}}`
- Run a command on a CSV file with no header row:
`{{command}} {{[-H|--no-header-row]}} {{path/to/file.csv}}`