linux之tar命令


tar命令中常见参数:

-c, --create 创建一个新归档
-x, --extract, --get 从归档中解出文件
-f, --file=ARCHIVE 使用归档文件
-z, --gzip, --gunzip, --ungzip 通过 gzip 过滤归档
-C, --directory=DIR 改变至目录 DIR
-v, --verbose 详细地列出处理的文件
tar打包
tar cvf a.tar 1.txt 2.txt   打包(l.txt 2.txt)为a.tar
tar xvf xvf a.tar -C /home 解包a.tar为(1.txt 2.txt)至home目录下(注:-C 表示解压到目录)
tar压缩gzip
tar -zcvf test.tar.gz 1.txt 2.txt 压缩(l.txt 2.txt)为a.tar.gz
tar -zxvf test.tar.gz -C /home
tar压缩bzip
tar -jcvf test.tar.bz 1.txt 2.txt 压缩(l.txt 2.txt)为a.tar.gz
tar -jxvf test.tar -C /home

tar压缩zip
zip 233 2.txt 3.txt
unzip 2.txt 3.txt

原创文章,作者:bd101bd101,如若转载,请注明出处:https://blog.ytso.com/244604.html

(0)
上一篇 2022年4月17日
下一篇 2022年4月17日

相关推荐

发表回复

登录后才能评论