Linux, Server, Web
tar 압축/해제
iolate
2018. 9. 10. 03:40
맨날 검색하다가 작성.
압축
$ tar -zcf [.tar.gz] [...]
압축 해제
$ tar -zxf [.tar.gz]
옵션
-f: use archive file or device ARCHIVE
-c: create a new archive
-x: extract files from an archive
-z: filter the archive through gzip
-p: extract information about file permissions (default for superuser)
-t: list the contents of an archive
-v: verbosely list files processed