1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-03-28 21:16:20 +01:00
tldr/pages.ko/linux/compress.md
코드싸이 19c6841a9d
cryptsetup-luksformat: fix typo, linux/c*: add and update Korean translation (#14682)
* linux/c*: add and update Korean translation

* cryptsetup-luksformat: fix typo
2024-11-08 15:55:00 +09:00

669 B

compress

Unix compress 명령어를 사용하여 파일 압축. 더 많은 정보: https://manned.org/compress.1.

  • 특정 파일 압축:

compress {{경로/대상/파일1 경로/대상/파일2 ...}}

  • 특정 파일 압축, 존재하지 않는 파일은 무시:

compress -f {{경로/대상/파일1 경로/대상/파일2 ...}}

  • 최대 압축 비트 지정 (9-16 비트):

compress -b {{비트}}

  • stdout에 기록 (파일은 변경되지 않음):

compress -c {{경로/대상/파일}}

  • 파일 압축 해제 (uncompress처럼 동작):

compress -d {{경로/대상/파일}}

  • 압축 비율 표시:

compress -v {{경로/대상/파일}}