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

bzip2: update Korean translation (#10684)

This commit is contained in:
ECMs 2023-09-15 14:19:15 +09:00 committed by GitHub
parent fb97b8a8ab
commit 8db5339628
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,12 +5,28 @@
- 파일 압축하기:
`bzip2 {{경로/압축할_파일}}`
`bzip2 {{경로/대상/압축할_파일}}`
- 파일 압축해제하기:
`bzip2 -d {{경로/압축된_.bz2파일}}`
`bzip2 -d {{경로/대상/압축된_파일.bz2}}`
- 파일을 표준 출력으로 압축해제:
`bzip2 -dc {{경로/압축된_.bz2파일}}`
`bzip2 -dc {{경로/대상/압축된_파일.bz2}}`
- 압축된 파일 내 각 파일의 무결성 테스트:
`bzip2 --test {{경로/대상/압축된_파일.bz2}}`
- 압축된 파일의 각 파일에 대한 압축률과 자세한 정보 표시:
`bzip2 --verbose {{경로/대상/압축된_파일.bz2}}`
- 기존 파일을 덮어쓰면서 파일 압축 해제:
`bzip2 --force {{경로/대상/압축된_파일.bz2}}`
- 도움말 표시:
`bzip2 -h`