common/z*: add Korean translation (#14520)

This commit is contained in:
코드싸이
2024-11-02 02:58:11 +09:00
committed by GitHub
parent 68b644059f
commit f0c85945c8
47 changed files with 932 additions and 0 deletions

24
pages.ko/common/zstd.md Normal file
View File

@@ -0,0 +1,24 @@
# zstd
> Zstandard 압축을 사용하여 파일을 압축하거나 압축 해제.
> 더 많은 정보: <https://github.com/facebook/zstd>.
- 파일을 `.zst` 확장자로 새 파일로 압축:
`zstd {{경로/대상/파일}}`
- 파일 압축 해제:
`zstd --decompress {{경로/대상/파일.zst}}`
- `stdout`으로 압축 해제:
`zstd --decompress --stdout {{경로/대상/파일.zst}}`
- 압축 수준을 지정하여 파일 압축 (1=가장 빠름, 19=가장 느림, 3=기본):
`zstd -{{수준}} {{경로/대상/파일}}`
- 더 많은 메모리를 사용하여 더 높은 압축 수준(최대 22) 잠금 해제 (압축 및 압축 해제 모두):
`zstd --ultra -{{수준}} {{경로/대상/파일}}`