tldr: update Korean translation, common/t*: add Korean translation (#14645)

* common/t*: add Korean translation

* tldr: update Korean translation

* Update tcc.md

* Update pages.ko/common/tcc.md

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>

* Update pages.ko/common/tar.md

Co-authored-by: Chooooo <contact@choo.ooo>

* Update pages.ko/common/tarsnap.md

Co-authored-by: Chooooo <contact@choo.ooo>

* Update pages.ko/common/tarsnap.md

Co-authored-by: Chooooo <contact@choo.ooo>

* Update pages.ko/common/transfersh.md

Co-authored-by: Chooooo <contact@choo.ooo>

* Update pages.ko/common/tuir.md

Co-authored-by: Chooooo <contact@choo.ooo>

* Update pages.ko/common/twine.md

Co-authored-by: Chooooo <contact@choo.ooo>

* Update pages.ko/common/twine.md

Co-authored-by: Chooooo <contact@choo.ooo>

---------

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: Chooooo <contact@choo.ooo>
This commit is contained in:
코드싸이
2024-11-09 13:29:00 +09:00
committed by GitHub
parent a7e96601f5
commit 0a970f1797
115 changed files with 2774 additions and 7 deletions

View File

@@ -0,0 +1,36 @@
# tsv-filter
> 개별 필드에 대한 테스트를 실행하여 TSV 파일의 행을 필터링합니다.
> 더 많은 정보: <https://github.com/eBay/tsv-utils#tsv-filter>.
- 특정 열이 주어진 숫자와 수치적으로 같은 행을 출력:
`tsv-filter -H --eq {{필드_이름}}:{{숫자}} {{경로/대상/tsv_파일}}`
- 특정 열이 주어진 숫자와 [eq]ual/[n]on [e]qual/[l]ess [t]han/[l]ess than or [e]qual/[g]reater [t]han/[g]reater than or [e]qual한 행을 출력:
`tsv-filter --{{eq|ne|lt|le|gt|ge}} {{열_번호}}:{{숫자}} {{경로/대상/tsv_파일}}`
- 특정 열이 주어진 문자열과 [eq]ual/[n]ot [e]qual/포함됨/포함되지 않음을 만족하는 행을 출력:
`tsv-filter --str-{{eq|ne|in-fld|not-in-fld}} {{열_번호}}:{{문자열}} {{경로/대상/tsv_파일}}`
- 비어 있지 않은 필드를 필터링:
`tsv-filter --not-empty {{열_번호}} {{경로/대상/tsv_파일}}`
- 특정 열이 비어 있는 행을 출력:
`tsv-filter --invert --not-empty {{열_번호}} {{경로/대상/tsv_파일}}`
- 두 조건을 만족하는 행을 출력:
`tsv-filter --eq {{열_번호1}}:{{숫자}} --str-eq {{열_번호2}}:{{문자열}} {{경로/대상/tsv_파일}}`
- 최소한 하나의 조건을 만족하는 행을 출력:
`tsv-filter --or --eq {{열_번호1}}:{{숫자}} --str-eq {{열_번호2}}:{{문자열}} {{경로/대상/tsv_파일}}`
- 첫 번째 행을 [H]eader로 해석하여 일치하는 행 개수 세기:
`tsv-filter --count -H --eq {{필드_이름}}:{{숫자}} {{경로/대상/tsv_파일}}`