common/x*: add Korean translation (#14635)

This commit is contained in:
코드싸이
2024-11-05 16:07:08 +09:00
committed by GitHub
parent 23c5de443b
commit a3249448d1
40 changed files with 815 additions and 0 deletions

36
pages.ko/common/xz.md Normal file
View File

@@ -0,0 +1,36 @@
# xz
> XZ 및 LZMA 파일을 압축 또는 해제.
> 더 많은 정보: <https://manned.org/xz>.
- 파일을 xz로 압축:
`xz {{경로/대상/파일}}`
- XZ 파일 압축 해제:
`xz --decompress {{경로/대상/파일.xz}}`
- 파일을 lzma로 압축:
`xz --format=lzma {{경로/대상/파일}}`
- LZMA 파일 압축 해제:
`xz --decompress --format=lzma {{경로/대상/파일.lzma}}`
- 파일 압축 해제 후 `stdout`에 쓰기 (`--keep` 포함):
`xz --decompress --stdout {{경로/대상/파일.xz}}`
- 파일을 압축하지만 원본을 삭제하지 않기:
`xz --keep {{경로/대상/파일}}`
- 가장 빠른 압축으로 파일 압축:
`xz -0 {{경로/대상/파일}}`
- 최고의 압축으로 파일 압축:
`xz -9 {{경로/대상/파일}}`