티스토리 뷰

공부

[Linux] tar, gz, zip

승가비 2020. 4. 26. 02:15
728x90
# compression
tar -cvf a.tar a
tar -zcvf a.tar.gz a
zip a.zip -r a

# decompression
tar -xvf a.tar
tar -zxvf a.tar.gz
unzip a.zip


-c: tar 
-z: gz
-x: decompression
-v: showing status
-f: filename
-r: recursive

https://brownbears.tistory.com/161

 

[Linux] tar, gz, zip 압축 및 압축 해제

압축하기 tar 압축 $ tar -cvf [파일명.tar] [폴더명] # abc라는 폴더를 aaa.tar로 압축 예시 $ tar -cvf aaa.tar abc tar.gz 압축 $ tar -zcvf [파일명.tar.gz] [폴더명] # abc라는 폴더를 aaa.tar.gz로 압축 예..

brownbears.tistory.com

 

728x90

'공부' 카테고리의 다른 글

[Python] unique list  (0) 2020.04.26
[Selenium] This version of ChromeDriver only supports Chrome version **  (0) 2020.04.26
[Spring] dependency  (0) 2020.04.21
[Sh] date  (0) 2020.04.18
[Sh] check detect OS  (0) 2020.04.18
댓글