博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
tar的基础用法
阅读量:4918 次
发布时间:2019-06-11

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

【tar】

-z 同时使用gzip压缩

-j 同时使用bzip2压缩

-x 解包或解压缩

-t 查看tar包的文件

-c 建立一个tar包或压缩文件

-v 可视化

-f 文件名(多个参数时,将f放置在最后面)

压缩时-f文件名表示压缩后的文件名为filename

解压时-f文件名表示解压filename

--exclude filename  在打包或压缩时,不要将filename文件包含在内。

#打tar包  -cvfls -l test_1112total 120-rw-rw-r--. 1 webuser webuser 38879 Nov 13 00:05 hero1.png-rw-rw-r--. 1 webuser webuser 38879 Nov 13 00:06 hero2.png-rw-rw-r--. 1 webuser webuser 38879 Oct  8 14:13 hero.pngtar -cvf test_1112.tar test_1112test_1112/test_1112/hero1.pngtest_1112/hero.pngtest_1112/hero2.pngls -ltotal 124drwxrwxrw-. 2 webuser webuser   4096 Nov 13 00:12 test_1112-rw-rw-rw-. 1 webuser webuser 122880 Nov 13 00:19 test_1112.tar

 

# 查看文件的内容 -tftar -tf test_1112.tar test_1112/test_1112/hero1.pngtest_1112/hero.pngtest_1112/hero2.png

 

#解压  -xvflstest_1112.tartar -xvf test_1112.tar test_1112/test_1112/hero1.pngtest_1112/hero.pngtest_1112/hero2.pngls -l test_1112total 120-rw-rw-r--. 1 webuser webuser 38879 Nov 13 00:05 hero1.png-rw-rw-r--. 1 webuser webuser 38879 Nov 13 00:06 hero2.png-rw-rw-r--. 1 webuser webuser 38879 Oct  8 14:13 hero.png

 

#压缩且使用gzip压缩  -zcvftar -zcvf test_1112.tar.gz test_1112test_1112/test_1112/hero1.pngtest_1112/hero.pngtest_1112/hero2.pngls -ltotal 240drwxrwxrw-. 2 webuser webuser   4096 Nov 13 00:12 test_1112-rw-rw-rw-. 1 webuser webuser 122880 Nov 13 00:24 test_1112.tar-rw-rw-rw-. 1 webuser webuser 116767 Nov 13 00:24 test_1112.tar.gz

 

#解压缩  -zxvfls -ltotal 116-rw-rw-rw-. 1 webuser webuser 116767 Nov 13 00:24 test_1112.tar.gztar -zxvf test_1112.tar.gz test_1112/test_1112/hero1.pngtest_1112/hero.pngtest_1112/hero2.pngls -ltotal 120drwxrwxrw-. 2 webuser webuser   4096 Nov 13 00:12 test_1112-rw-rw-rw-. 1 webuser webuser 116767 Nov 13 00:24 test_1112.tar.gz

 

#跳过文件  --exclude fileNamels -l test_1112/total 120-rw-rw-r--. 1 webuser webuser 38879 Nov 13 00:05 hero1.png-rw-rw-r--. 1 webuser webuser 38879 Nov 13 00:06 hero2.png-rw-rw-r--. 1 webuser webuser 38879 Oct  8 14:13 hero.pngtar -cvf test_1112.tar test_1112 --exclude hero.png --exclude hero1.pngtest_1112/test_1112/hero2.pngtar -tf test_1112.tar test_1112/test_1112/hero2.png

 

转载于:https://www.cnblogs.com/tsing0520/p/9950041.html

你可能感兴趣的文章
用css画个遨游logo
查看>>
杭电2061
查看>>
硬盘的工作原理
查看>>
开发日志
查看>>
使用 Intellij Idea 导出JavaDoc
查看>>
485. Max Consecutive Ones
查看>>
C#四舍五入保留一位小数
查看>>
删除本地git的远程分支和远程删除git服务器的分支【转】
查看>>
js -- 写个闭包
查看>>
属性动画
查看>>
html5中<body>标签支持的事件
查看>>
F. 约束
查看>>
Codeforces 735D. Taxes
查看>>
nexus的安装
查看>>
iOS-截图和把截图封装成一个方法
查看>>
activiti保存流程图的同时没有保存图片
查看>>
对Python3编码的整理!!!
查看>>
论”犯贱“ --生活小记
查看>>
Python标准库:内置函数ascii(object)
查看>>
MySQL查询优化(转)
查看>>