zoukankan      html  css  js  c++  java
  • linux命令-zip压缩unzip解压缩

    和windows的zip的压缩文件是通用的  可以解压缩

    压缩文件

     ///////////////////////////////////////////////////////////

    [root@wangshaojun ~]# zip 111.txt.zip 111.txt

    adding: 111.txt (deflated 78%)
    [root@wangshaojun ~]# ls
    111.txt 1.txt 
    111.txt.zip 222

    ////////////////////////////////////////////////////////////////////////////////

    [root@wangshaojun ~]# rm -fvr 111.txt ////删除文件
    已删除"111.txt"
    [root@wangshaojun ~]# unzip 111.txt.zip 
    Archive: 111.txt.zip
    inflating: 111.txt
    [root@wangshaojun ~]# ls ////原文件还在
    111.txt 1.txt
    111.txt.zip

    /////////////////////////////////////////////////////////////////////////////////

    压缩目录

    [root@wangshaojun ~]# zip -r 1.zip 111.txt 222 234
    adding: 111.txt (deflated 78%)
    adding: 222/ (stored 0%)
    adding: 234/ (stored 0%)
    adding: 234/123.txt (deflated 73%)

    解压缩目录
    [root@wangshaojun ~]# unzip 1.zip
    Archive: 1.zip
    replace 111.txt? [y]es, [n]o, [A]ll, [N]one, [r]ename: y
    inflating: 111.txt
    replace 234/123.txt? [y]es, [n]o, [A]ll, [N]one, [r]ename: y
    inflating: 234/123.txt

  • 相关阅读:
    简单的多重背包
    完美子图
    活动投票
    人品问题
    售票系统
    最短路径
    优美值
    前端-常用函数记录-持续更新
    前端-单点登录中cookie中domain的思考
    大白话说GIT常用操作,常用指令git操作大全
  • 原文地址:https://www.cnblogs.com/wangshaojun/p/4947616.html
Copyright © 2011-2022 走看看