tar.zip怎么解壓 tar解壓zip文件命令



文章插圖
tar.zip怎么解壓 tar解壓zip文件命令

文章插圖
實驗環境:Centos7.* 64位,最小化安裝版 。長時間不解壓縮,命令就會忘記,給自己留個記錄,沒事來看看 。
打包成tar.gz格式壓縮包
【tar.zip怎么解壓 tar解壓zip文件命令】# tar -zcvf renwolesshel.tar.gz /renwolesshel解壓tar.gz格式壓縮包
# tar zxvf renwolesshel.tar.gz打包成tar.bz2格式壓縮包
# tar -jcvf renwolesshel.tar.bz2 /renwolesshel解壓tar.bz2格式的壓縮包
# tar jxvf renwolesshel.tar.bz2壓縮成zip格式
# zip -q -r renwolesshel.zip renwolesshel/解壓zip格式的壓縮包
# unzip renwolesshel.zip暫時先這些吧,后期遇到了再添加 。