gunzip和unzip 解压文件到指定的目录



<span style="color:#333333;font-size:14px;font-family:helvetica, tahoma, arial, sans-serif;line-height:25px;background-color:#ffffff;">  Linux 常用的压缩命令有 gzip 和 zip,两种压缩包的结尾不同:zip 压缩的后文件是 .zip ,而 gzip 压缩后的文件 .gz 

相应的解压缩命令则是 gunzip 和 unzip 



gzip 命令: 

gzip test.txt 

它会将文件压缩为文件 test.txt.gz,原来的文件则没有了,解压缩也一样 


gunzip test.txt.gz 

它会将文件解压缩为文件 test.txt,原来的文件则没有了,为了保留原有的文件,我们可以加上 -c 选项并利用 linux 的重定向 


gzip -c test.txt > /root/test.gz 

这样不但可以将原有的文件保留,而且可以将压缩包放到任何目录中,解压缩也一样 


gunzip -c /root/test.gz > ./test.txt 





zip 命令: 

zip test.zip test.txt 

它会将 test.txt 文件压缩为 test.zip ,当然也可以指定压缩包的目录,例如 /root/test.zip 


unzip test.zip 

它会默认将文件解压到当前目录,如果要解压到指定目录,可以加上 -d 选项 



</span><p style="color:#333333;font-family:arial;font-size:14px;line-height:26px;"><span style="font-family:helvetica, tahoma, arial, sans-serif;line-height:25px;background-color:#ffffff;"># unzip test.zip -d /root/ </span></p>
<p style="color:#333333;font-family:arial;font-size:14px;line-height:26px;"><span style="font-family:helvetica, tahoma, arial, sans-serif;line-height:25px;background-color:#efefef;">

</span></p>
<p style="color:#333333;font-family:arial;font-size:14px;line-height:26px;"><span style="font-family:helvetica, tahoma, arial, sans-serif;"><span style="line-height:25px;">参考: http://www.iteye.com/topic/1036348</span></span></p>
<p style="color:#333333;font-family:arial;font-size:14px;line-height:26px;"><span style="font-family:helvetica, tahoma, arial, sans-serif;">

</span></p>

标签: linux, 压缩解压, unzip, gunzip

相关文章

评论已关闭