zoukankan      html  css  js  c++  java
  • gunzip 和 unzip 解压文件到指定的目录

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

      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 选项 

    # unzip test.zip -d /root/ 

     

    参考: http://www.iteye.com/topic/1036348

  • 相关阅读:
    CAP.dll of dotnetcore
    GRPC 高性能 RPC 框架, 服务间通讯
    REST Client
    ERP Export
    ERP Update DataSource
    knockout js
    面试题目总结
    JavaScript Objiects and Prototypes
    PLS-00172: string literal too long
    字符串连接性能
  • 原文地址:https://www.cnblogs.com/mjorcen/p/3719377.html
Copyright © 2011-2022 走看看