tar tvf Package_name.tar压缩
点击(此处)折叠或打开
- [root@localhost ~]# cd /opt/
- [root@localhost opt]# mkdir 1 2
- [root@localhost opt]# touch 1.txt
- [root@localhost opt]# ls
- 1 1.txt 2
-
[root@localhost opt]# tar jcf tmp.bz2 1 1.txt 2
查看压缩包内的内容
点击(此处)折叠或打开
- [root@localhost opt]# tar -tf tmp.bz2
- 1/
- 1.txt
- 2/
解压单个文件
点击(此处)折叠或打开
- tar jxvf tmp.bz2 1.txt
点击(此处)折叠或打开
-
[root@localhost opt]# tar jxvf tmp.bz2 1 2
1/
2/