linux-压缩解压命令

tar

tar zcvf  abc.tar.gz a.txt b.txt c.txt  # 打包文件
tar zvtf  abc.tar.gz  # 查看打包文件
tar zvxf  abc.tar.gz # 解压文件

zip

yum install -y zip unzip  # 安装
zip abc.zip a.txt b.txt c.txt #压缩文件
unzip abc.zip  #解压缩文件
zip -r root.zip /root #压缩文件夹
unzip root.zip #解压缩文件夹
posted @ 2022-03-22 14:31  自动侠  阅读(38)  评论(0编辑  收藏  举报