《Linux Shell脚本攻略》 笔记 第六章:打包压缩
-rw-rw-r-- yy/yy 101843 2014-12-18 07:40 33.txt
drwxrwxr-x yy/yy 0 2014-12-31 18:11 abc/
-rw-rw-r-- yy/yy 0 2014-12-31 18:11 abc/def
11.txt
22.txt
33.txt
33.txt
abc/
abc/def
[root@localhost program_test]# tar -f output.tar --delete 33.txt
[root@localhost program_test]# tar -tf output.tar
11.txt
22.txt
abc/
abc/def
#!/bin/bash
textfiles=`ls | grep ".txt" | xargs`
echo $textfiles
for textfile in $textfiles;
do
tar -rvf archive.tar $textfile //以追加的形式打包文件.
done
gzip archive.tar //压缩归档文件
作者:铭毅天下
转载请标明出处,原文地址:http://blog.csdn.net/laoyang360/article/details/42364849
如果感觉本文对您有帮助,请点击‘顶’支持一下,您的支持是我坚持写作最大的动力,谢谢!
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。