博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
linux unzip程序简介
阅读量:4187 次
发布时间:2019-05-26

本文共 934 字,大约阅读时间需要 3 分钟。

1、简介

    程序unzip可以解压缩zip文件。

2、语法

  Usage: unzip [-Z] [-opts[modifiers]] file[.zip] [list] [-x xlist] [-d exdir]

  Default action is to extract files in list, except those in xlist, to exdir;    file[.zip] may be a wildcard.  -Z => ZipInfo mode ("unzip -Z" for usage).
  -p  extract files to pipe, no messages 
  -l  显示压缩文件内所包含的文件。
  -f  更新现有的文件
  -t  检查压缩文件是否正确
  -u  update files, create if necessary      
  -z  display archive comment
  -x 指定不要处理.zip压缩文件中的哪些文件 
  -d 指定文件解压缩后所要存储的目录
modifiers:                                   
  -q  quiet mode (-qq => quieter)
  -n  never overwrite existing files         
  -a  auto-convert any text files
  -o  overwrite files WITHOUT prompting      
  -aa treat ALL files as text
  -j  junk paths (do not make directories)   
  -v  be verbose/print version info
  -C  match filenames case-insensitively     
  -L  make (some) names lowercase
  -X  restore UID/GID info                   
  -V  retain VMS version numbers
  -K  keep setuid/setgid/tacky permissions   
  -M  pipe through "more" pager

3、示例

    1)解压缩war包到指定的目录

       unzip -d test blog.war

参考文献:百度百科

转载地址:http://hedoi.baihongyu.com/

你可能感兴趣的文章
XHProf-php轻量级的性能分析工具
查看>>
Jackson Tree Model Example
查看>>
如何防止sql注入
查看>>
Mysql中下划线问题
查看>>
Xcode 11 报错,提示libstdc++.6 缺失,解决方案
查看>>
vue项目打包后无法运行报错空白页面
查看>>
面试题:强制类型转换
查看>>
Decorator模式
查看>>
Template模式
查看>>
Observer模式
查看>>
高性能服务器设计
查看>>
图文介绍openLDAP在windows上的安装配置
查看>>
Pentaho BI开源报表系统
查看>>
Pentaho 开发: 在eclipse中构建Pentaho BI Server工程
查看>>
android中SharedPreferences的简单例子
查看>>
android中使用TextView来显示某个网址的内容,使用<ScrollView>来生成下拉列表框
查看>>
andorid里关于wifi的分析
查看>>
Hibernate和IBatis对比
查看>>
Spring MVC 教程,快速入门,深入分析
查看>>
Ubuntu Navicat for MySQL安装以及破解方案
查看>>