标签:指定 host 表示 oca txt pre code zip style
[root@localhost ~]# tar -cvf 1.tar 1.txt 2.txt # 打包,表示把 1.txt 和 2.txt 打包成 1.tar ,c 表示创建一个包,v 表示可视化,f 表示指定打包后的文件 [root@localhost ~]# tar -tf 1.tar # 查看打包的文件 [root@localhost ~]# tar -xvf 1.tar # 解包 [root@localhost ~]# tar -C /tmp/ -xvf 1.tar # 解包到指定目录
[root@localhost ~]# tar -zcvf 1.tar.gz 1.txt 2.txt # 打包并压缩,指定压缩格式为 gzip [root@localhost ~]# tar -jcvf 1.tar.bz2 1.txt 2.txt # 打包并压缩,指定压缩格式为 bzip2 [root@localhost ~]# tar -Jcvf 1.tar.xz 1.txt 2.txt # 打包并压缩,指定压缩格式为 xz [root@localhost ~]# tar -zxvf 1.tar.gz # 解压缩解包,解压缩的格式为 gzip [root@localhost ~]# tar -jxvf 1.tar.bz2 # 解压缩解包,解压缩的格式为 bzip2 [root@localhost ~]# tar -Jxvf 1.tar.xz # 解压缩解包,解压缩的格式为 xz [root@localhost ~]# tar -tf 1.tar.gz # 查看 gzip 格式的压缩包 [root@localhost ~]# tar -tf 1.tar.bz2 # 查看 bzip2 格式的压缩包 [root@localhost ~]# tar -tJf 1.tar.xz # 查看 xz 格式的压缩包
标签:指定 host 表示 oca txt pre code zip style
原文地址:http://www.cnblogs.com/pzk7788/p/6970718.html