Linux压缩,解压缩命令
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux压缩,解压缩命令相关的知识,希望对你有一定的参考价值。
1.递归压缩命令
zip -r a.zip ./a
命令解释:递归压缩当前路径下的a文件夹,a.zip为压缩后的文件名
2.压缩单个文件
zip a.zip ./a
3.解压缩
unzip a.zip
问题1:解压缩时出现-bash: unzip: command not found错误
解决1:yum install -y unzip zip 使用yum命令安装zip unzip命令
以上是关于Linux压缩,解压缩命令的主要内容,如果未能解决你的问题,请参考以下文章