2013年7月26日 星期五

[ Linux ] : Command note : tar

=====================
.gz

壓縮檔案 ( or 資料夾) :
tar -czvf filename.tgz src

解開 tar:
tar -xzvf filename.tgz
=====================

.bz2

壓縮檔案 ( or 資料夾) :
tar -cjvf filename.tgz src

解開 tar:
tar -xjvf filename.tgz

=====================

參數:
-c, --create
           create a new archive
-x, --extract, --get
           extract files from an archive
-z, --gzip, --gunzip --ungzip
           filter the archive through gzip
-j, --bzip2
           filter the archive through bzip2
-v, --verbose
           verbosely list files processed
-f, --file ARCHIVE
           use archive file or device ARCHIVE

沒有留言: