码迷,mamicode.com
首页 > 其他好文 > 详细

2018.4.17 四周第二次课

时间:2018-04-15 00:59:49      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:tar打包工具   打包并压缩   zip压缩工具   解压缩目录   

zip压缩工具 (可以压缩目录)
概念:zip压缩包在Windows和Linux中都比较常用,
它可以压缩目录和文件,压缩目录时,需要指定目录下的文件。
zip后面先跟目标文件名(即压缩后的自定义的压缩包名),
然后跟要压缩的文件或者目录;
安装源码包:yum -y install zip
特点:压缩完了源文件不删除。
选项:
-r 压缩目录

zip压缩文件

[root@localhost d6z]# zip 2.txt.zip 2.txt #先跟目标文件名,再跟指定文件路径。
adding: 2.txt (deflated 75%)
[root@localhost d6z]# ls
1.txt 2.txt 2.txt.zip dior1

压缩目录和文件

[root@localhost d6z]# zip -r dior1.zip 2.txt dior1/ #压缩文件和目录
updating: dior1/ (stored 0%)
updating: dior1/1.txt (stored 0%)
adding: 2.txt (deflated 75%)
[root@localhost d6z]# ls
1.txt 2.txt 2.txt.zip dior1 dior1.zip

解压zip

[root@localhost d6z]# yum -y install unzip #安装源码包
[root@localhost d6z]# unzip dior1.zip
Archive: dior1.zip
replace dior1/1.txt? [y]es, [n]o, [A]ll, [N]one, [r]ename: #是否要覆盖,因为压缩的时候并没有把源文件删除,是否需要覆盖 替换。 A 表示全部yes

指定解压zip到哪里去

[root@localhost d6z]# mkdir test #创建目录
[root@localhost d6z]# unzip 2.txt.zip -d test/ #解压缩2.txt.zip目录,-d指定到 test目录下。
Archive: 2.txt.zip
inflating: test/2.txt

zip不可以查看文件的内容,不过可以查看目录下都有哪些文件,示例如下:

[root@localhost d6z]# unzip -l dior1.zip
Archive: dior1.zip
Length Date Time Name


0 04-14-2018 23:20 dior1/
7 04-14-2018 23:20 dior1/1.txt
215600 04-14-2018 23:18 2.txt


215607 3 files

tar打包工具

概念:tar本身就是一个打包工具,可以把目录打包成一个文件;
它把所有文件整合成一个大文件,方便复制或者移动;
命令格式:tar [zjxcvfpP] filename tar
常用选项:
-z 表示同时用gzip压缩
-j 表示同时用bzip2压缩
-J 表示同时用xz压缩
-x 表示解包或者解压缩
-t 表示查看tar包里面文件
-c 表示建立一tar包或者压缩文件包
-v 表示可视化
-f 后面跟文件名(-f filename,表示压缩后的文件名为filename;
或者压缩文件filename,如果是多个参数的话,需要把-f写到最前面。

用到的命令

tar -cvf 123.tar 123
tar -cvf

打包一个目录

[root@localhost d6z]# tar -cvf dior1.tar dior1
dior1/
dior1/1.txt
[root@localhost d6z]# ls
1.txt 2.txt 2.txt.zip dior1 dior1.tar dior1.zip test

解包

[root@localhost d6z]# tar -cvf dior1.tar dior1
dior1/
dior1/1.txt
[root@localhost d6z]# ls
1.txt 2.txt 2.txt.zip dior1 dior1.tar dior1.zip test

查看文件包里的内容

[root@localhost d6z]# tar -tf dior1.tar
dior1/
dior1/1.txt

打包的时候过滤掉所有.txt的文件 --exclude

[root@localhost d6z]# tar -cvf dior1.tar --exclude ".txt" dior1
dior1/ #建立一个dior1.tar的压缩包, --exclude 过滤所有“
.txt”的文件 ,打包dior1

打包并压缩

加上选项“z” 表示压缩成gzip压缩包

[root@localhost d6z]# tar -zcvf dior2.tar.gz --exclude "*.txt" dior1
dior1/
[root@localhost d6z]# ls
1.txt 2.txt 2.txt.zip dior1 dior1.tar dior1.tar.gz dior1.zip dior2.tar.gz test

注:选项-zcvf表示 z打包的同事并且解压,建一个tar包 或压缩我呢见包, v 可视化, f 后面需要跟文件名,表示压缩后的文件名

技术分享图片

加上j,表示打包的同时使用bzip2压缩
加上J,表示打包的同时使用xz压缩

2018.4.17 四周第二次课

标签:tar打包工具   打包并压缩   zip压缩工具   解压缩目录   

原文地址:http://blog.51cto.com/13646023/2103538

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!