標籤:
《Linux Shell指令碼攻略》 筆記
第六章:打包壓縮//1、打包、解包[[email protected] program_test]# tar -cf output.tar 11.txt 22.txt 33.txt [[email protected] program_test]# tar -xf output.tar -C ./tar-file/ //-C指定要提取到哪個路徑?//列舉出歸檔檔案中的內容[[email protected] program_test]# tar -tvf output2.tar
-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//[[email protected] program_test]# tar -tf output.tar
11.txt
22.txt
33.txt
33.txt
abc/
abc/def//刪除給定歸檔檔案中的檔案
[[email protected] program_test]# tar -f output.tar --delete 33.txt
[[email protected] program_test]# tar -tf output.tar
11.txt
22.txt
abc/
abc/def
2、壓縮//批量打包和壓縮的實現[[email protected] touch_more]# cat gzip_all_files.sh
#!/bin/bash
textfiles=`ls | grep ".txt" | xargs`
echo $textfiles
for textfile in $textfiles;
do
tar -rvf archive.tar $textfile //以追加的形式打包檔案.
done
gzip archive.tar //壓縮歸檔檔案
//解壓縮 -x提取檔案; -z採用gzip樣式.[[email protected] touch_more]# tar -zxvf archive.tar.gz -C ./test_unzip/
銘毅天下
轉載請標明出處,原文地址:http://blog.csdn.net/laoyang360/article/details/42364849
如果感覺本文對您有協助,請點擊‘頂’支援一下,您的支援是我堅持寫作最大的動力,謝謝!
《Linux Shell指令碼攻略》 筆記 第六章:打包壓縮