Linux命令-tar
Posted 北海悟空
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux命令-tar相关的知识,希望对你有一定的参考价值。
- tar命令用于对文件打包压缩或解压
- 格式:tar [选项 -C 指定解压到的目录] [文件]
- 打包并压缩文件:
tar -zcvf 压缩包名.tar.gz 文件名
- 解压并展开压缩包
tar -zxvf 压缩包名.tar.gz
[[email protected] testB]# ls 111.txt 222.txt
将111.txt文件通过gzip打包保存文件名111.tar.gz [[email protected] testB]# tar zcvf 111.tar.gz 111.txt 111.txt [[email protected] testB]# ls 111.tar.gz 111.txt 222.txt [[email protected] testB]# rm -rf 111.txt [[email protected] testB]# ls 111.tar.gz 222.txt
解压111.tar.gz到当前目录
[[email protected] testB]# tar zxvf 111.tar.gz 111.txt [[email protected] testB]# ls 111.tar.gz 111.txt 222.txt
解压111.tar.gz到指定目录/root/testC下 [[email protected] testB]# tar -zxvf 111.tar.gz -C /root/testC/ 111.txt [[email protected] testB]# ll /root/testC/ 总用量 4 -rw-r--r--. 1 root root 3 9月 7 15:23 111.txt
以上是关于Linux命令-tar的主要内容,如果未能解决你的问题,请参考以下文章