일반 명령어(gzip '압축할 파일')로 압축하면 원복 파일은 기본적으로 삭제된다.
gzip '압축할 파일'
$ gzip '압축할 파일' -c '압축할 파일' > comp.gz
위와 같이 명령어를 입력하면 압축 후 원본 파일도 유지된다.
압축풀기 후 원본 파일 유지
$ gunzip temp_file.gz temp_file.gz > temp_file