码迷,mamicode.com
首页 >  
搜索关键字:unzip    ( 1013个结果
压缩工具gzip,bzip2,xz,zip,tar
gzipbzip2xz都可以指定压缩等级,都是1到9,不能指定解压目录,不过单个文件时可以使用-c参数重定向(-c:将压缩解压后的结果输出到标准输出)实现。unzip可以使用-d指定解压目录打包工具tar:特点是可以将文件、目录打包成一个文件方便管理,而且可以结合gzip、bzip2、xz等压缩工具..
分类:其他好文   时间:2016-01-23 18:41:34    阅读次数:186
LeetCode "Odd Even Linked List"
Visualize the unzip process.class Solution {public: ListNode* oddEvenList(ListNode* head) { if (!head || !head->next) return head; Li...
分类:其他好文   时间:2016-01-23 07:58:44    阅读次数:491
MySQL 学习用employee数据库表参考使用
download place:https://launchpad.net/test-db/ ,choose this file from the right panel:employees_db-full-1.0.6.tar.bz2 this is the full version. unzip t...
分类:数据库   时间:2016-01-09 20:19:56    阅读次数:184
[Ruby]Unzipping a file using rubyzip
link:http://www.markhneedham.com/blog/2008/10/02/ruby-unzipping-a-file-using-rubyzip/require 'rubygems'require 'zip/zip' def unzip_file (file, destina...
分类:其他好文   时间:2016-01-03 12:51:05    阅读次数:150
MindManager弹出DynaZip Unzip Error的解决办法
刚装的mindmanager弹出DynaZip Unzip Error错误,怎么点都点不掉,崩溃!网上找的方法有:1、删除c盘下面mindmanager的无效快捷方式,我试了,发现c盘下面mindmanager快捷方式都有效2、templates文件夹出了问题,具体参看帖子http://blog.s...
分类:其他好文   时间:2016-01-02 00:51:01    阅读次数:211
linux笔记 文件的压缩与解压缩gzip、bzip2、xz、zip&unzip、tar打包、tar打包和压缩并用
压缩文件意义节省网络传输带宽,降低磁盘使用率。但会使用一定的cpu。1、gzip不支持压缩目录,gzip后直接跟文件名,在当前目录下压缩时,原文件会消失。#gzipfilename指定压缩目录:#gzip-c123.txt>/tmp/123.txt.gz将当前目录下123.txt文件压缩到tmp目录下名字为123.txt.gz..
分类:系统相关   时间:2015-12-31 07:21:16    阅读次数:1464
Linux学习私人笔记-压缩文件命令
常用的压缩命令有:.zip .gz .bz2 .tar.gz .tar.bz2.zip格式在linux和Windows中可以互用:zip 压缩文件名 原文件名 :压缩文件。zip -r 压缩目录名 原目录名 :压缩目录。unzip压缩文件名 :解压文件/目录。gzip原缩文件名 :压缩文件,文件格式...
分类:系统相关   时间:2015-12-30 19:09:45    阅读次数:232
使用cocoapods install友盟时报错Error installing UMengAnalytics
报错:[!] /usr/bin/unzip /Users/soindy/Documents/SmartThermo/ios/SmartThermo/Pods/UMengAnalytics/file.zip -d /Users/soindy/Documents/SmartThermo/ios/Smar...
分类:其他好文   时间:2015-12-25 15:21:31    阅读次数:817
linux常用命令
CentOS常用命令#安装中文输入法yum install "@Chinese Support"#安装zip解压工具yum install zip unzip#tail命令tail -f ./xxx.log#启动openofficecd /openoffice/programsoffice -hea...
分类:系统相关   时间:2015-12-22 22:43:20    阅读次数:217
1013条   上一页 1 ... 77 78 79 80 81 ... 102 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!