tar是常用的解压缩指令,常用参数
[root@centoscc cc]# tar -cf file.tar cc*.txt [root@centoscc cc]# ls -l 总用量 60 ... -rw-r--r--. 1 root root 10240 12月 24 19:11 file.tar ...
[root@centoscc cc]# tar -rf file.tar root1.txt
[root@centoscc cc]# tar -uf file.tar root1.txt
[root@centoscc cc]# tar -tf file.tar cc4.txt cc.txt root1.txt
[root@centoscc cc1]# ls -l 总用量 12 drwx--x--x. 3 root root 18 12月 20 16:25 cc1 drwxr-xr-x. 2 root root 6 12月 20 16:24 cc11 -rw-r--r--. 1 root root 10240 12月 24 19:11 file.tar [root@centoscc cc1]# tar -xf file.tar [root@centoscc cc1]# ls -l 总用量 24 drwx--x--x. 3 root root 18 12月 20 16:25 cc1 drwxr-xr-x. 2 root root 6 12月 20 16:24 cc11 -rw-r--r--. 1 root root 16 12月 20 21:19 cc4.txt -rw-r--r--. 1 root root 15 12月 20 21:21 cc.txt -rw-r--r--. 1 root root 10240 12月 24 19:11 file.tar -rw-r--r--. 1 root root 16 12月 22 20:37 root1.txt
[root@centoscc cc1]# tar -xvf file.tar -C file1 cc4.txt cc.txt root1.txt [root@centoscc cc1]# cd file1 [root@centoscc file1]# ls -l 总用量 12 -rw-r--r--. 1 root root 16 12月 20 21:19 cc4.txt -rw-r--r--. 1 root root 15 12月 20 21:21 cc.txt -rw-r--r--. 1 root root 16 12月 22 20:37 root1.txt
常用指令:
# tar -czf file1.tar.gz cc*.txt 解压:# tar -xzf file1.tar.gz
原文:https://www.cnblogs.com/Cc905/p/14185962.html