- tar命令用于对文件打包压缩或解压
- 格式:tar [选项 -C 指定解压到的目录] [文件]
- 打包并压缩文件:
tar -zcvf 压缩包名.tar.gz 文件名
[root@localhost testB]# ls
.txt .txt
将111.txt文件通过gzip打包保存文件名111.tar.gz
[root@localhost testB]# tar zcvf .tar.gz .txt
.txt
[root@localhost testB]# ls
.tar.gz .txt .txt
[root@localhost testB]# rm -rf .txt
[root@localhost testB]# ls
.tar.gz .txt
解压111.tar.gz到当前目录
[root@localhost testB]# tar zxvf .tar.gz
.txt
[root@localhost testB]# ls
.tar.gz .txt .txt
解压111.tar.gz到指定目录/root/testC下
[root@localhost testB]# tar -zxvf .tar.gz -C /root/testC/
.txt
[root@localhost testB]# ll /root/testC/
总用量
-rw-r--r--. root root 9月 : .txt