tar压缩命令
tar -czvf x.tar.gz file1 file2 dir
-z, --gzip ilter the archive through gzip:使用gzip压缩
tar解压命令
tar -xzvf x.tar.gz -C dir
coder
tar压缩命令
tar -czvf x.tar.gz file1 file2 dir
-z, --gzip ilter the archive through gzip:使用gzip压缩
tar解压命令
tar -xzvf x.tar.gz -C dir
Notifications