Linux解压缩tar.gz和zip文件命令使用方法
2018-10-15 本文已影响20人
7f4cf71ba8f6
Linux解压缩最常见2种压缩文件就是zip和tar.gz,因而这里只说说这2种文件解压缩方式。未部署zip和unzipcommand请看:Linux 部署zip和unzipcommand的方式
方式
1、解压缩tar.gz文件
1、压缩command
tar zcvf xx.tar.gz /home/wwwroot #把/home/wwwroot打包,并定名xx.tar.gz
2、解压command
tar zxvf xx.tar.gz #在当前目录解压xx.tar.gz
tarcommand详解请看:Linux中tar解压缩command详解
2、解压缩zip文件
1、压缩command
zip -r xx.zip /home/xx #压缩/home/xx目录并定名xx.zip
2、解压command
unzip /home/zz.zip #解压/home文件夹zz.zip文件到当前目录
zipcommand详解请看:Linux中zip压缩和unzip解压缩command详解
希望以上的文章对各位有用,如果觉得不错给我点个喜欢吧!更多和Linux解压缩tar.gz和zip文件命令使用方法相关的问题或者对澳大利亚便宜虚拟主机有疑惑也欢迎大家咨询。