打包:
zip gzip bzip2 tar xz //rar
zip 包
zip xxx.zip test.c 压缩
unzip xxx.zip 解压 解压之后还有压缩包
gzip
gzip test.c ==> test.c.gz 压缩
gunzip test.c.gz ==> test.c 解压 解压后没有压缩包
bzip2
bzip2 test.c ==> test.c.bz2 压缩
bunzip2 test.c.bz2 ==> test.c 解压 解压后没有压缩包
xz
xz test.c ==> test.c.xz
xz -d test.c.xz ==> test.c
unxz test.c.xz ==> test.c 解压 解压后没有压缩包
打包
tar
tar -cf test.c.tar test.c ==> test.c.tar
tar -cvf test.c.tar test.c ==> test.c.tar
c ==> create
f ==> file
tar -xvf test.c.tar ==> test.c
-xf ==> test.c
x ==> uncompress
v ==> view 能看到解压或者压缩的过程
复合型
aaa.tar.xz aaa.tar.bz2 aaa.tar.gz
打成 aaa.tar.gz
tar -czvf aaa.tar.gz aaa ==> 生成aaa.tar.gz
tar -xzvf aaa.tar.gz ==> aaa 解压 解压后有压缩包
tar -cjvf aaa.tar.bz2 aaa ==> aaa.tar.bz2
tar -xjvf aaa.tar.bz2 ==> aaa
xz压包
tar -cvf aaa.tar aaa ==> aaa.tar
xz aaa.tar ==> aaa.tar.xz
unxz aaa.tar.xz ==> aaa.tar
tar -xvf aaa.tar ==> aaa
相关文章
- 08-30批量打包成ZIP压缩文件
- 08-30vue打包文件后首次加载速度慢解决方法----1.压缩文件js.css 2.使用cdn加载
- 08-30tar,gzip等打包压缩工具
- 08-30文件查找工具和打包压缩工具
- 08-305. vue.config.js中的一些配置,配置jQuery,关闭Source Maps,开启gzip 压缩,打包分析, 代理devServer
- 08-30liunx基础命令使用三 (tar 打包压缩)
- 08-30搭建vite2.0+vue3.0+ts+多页面打包+多环境+gzip+图片压缩框架
- 08-30文件管理之打包压缩
- 08-30linux常用命令 、查看日志、web排查
- 08-30移动平台打包纹理压缩设置