码迷,mamicode.com
首页 > 系统相关 > 详细

Linux解压缩文件

时间:2018-01-25 00:13:07      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:bsp   程序   lin   不同   class   zip   blog   gpo   linux   

Linux下自带了一个unzip的程序可以解压缩文件,
解压命令是:unzip filename.zip 
同样也提供了一个zip程序压缩zip文件,命令是 
zip filename.zip files 
会将files压缩到filename.zip 
另外看看文件的后缀名,不同的后缀的文件解压和压缩的命令都不一样
 总结一下
 1、*.tar 用 tar –xvf 解压 
 2、*.gz 用 gzip -d或者gunzip 解压 
 3、*.tar.gz和*.tgz 用 tar –xzf 解压 
 4、*.bz2 用 bzip2 -d或者用bunzip2 解压 
 5、*.tar.bz2用tar –xjf 解压 
 6、*.Z 用 uncompress 解压 
 7、*.tar.Z 用tar –xZf 解压 
 8、*.rar 用 unrar e解压 
 9、*.zip 用 unzip 解压

Linux解压缩文件

标签:bsp   程序   lin   不同   class   zip   blog   gpo   linux   

原文地址:https://www.cnblogs.com/duanyingkui/p/8343538.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!