//1、打包、解包
[root@localhost program_test]# tar -cf output.tar 11.txt 22.txt 33.txt
[root@localhost program_test]# tar -xf output.tar -c ./tar-file/ //-c指定要提取到哪個路徑?
//列舉出歸檔檔案中的內容
[root@localhost 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
//[root@localhost program_test]# tar -tf output.tar
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
2、壓縮
//批量打包和壓縮的實現
[root@localhost touch_more]# cat gzip_all_files.sh
#!/bin/bash
textfiles=`ls | grep ".txt" | xargs`
echo $textfiles
for textfile in $textfiles;
dotar -rvf archive.tar $textfile //以追加的形式打包檔案.
done
gzip archive.tar //壓縮歸檔檔案
//解壓縮 -x提取檔案; -z採用gzip樣式.
[root@localhost touch_more]# tar -zxvf archive.tar.gz -c ./test_unzip/
第六章 壓縮打包
一 壓縮打包介紹 二 gzip壓縮工具 三 bzip2壓縮工具 四 xz壓縮工具 五 zip壓縮工具 六 tar打包 一 壓縮打包介紹 1.1使用壓縮工具的好處 使用壓縮檔案,不僅可以節省磁碟空間,而且在傳輸時還能節省網路寬頻。我們通常講的家用寬頻和機房寬頻100m是有區別的 機房寬頻的上行和下行都...
Linux第六章 壓縮命令
6壓縮與解壓縮 6.1壓縮格式有 常用壓縮格式 zip gz bz2 常用壓縮格式 tar.gz tar.bz2 zip格式壓縮 zip 壓縮檔案名 原始檔 壓縮檔案 zip r 壓縮檔案名 原始檔 壓縮目錄 zip格式解壓縮 unzip 壓縮檔案 解壓縮.zip gzip 原始檔 壓縮為.gz格式...
mysql第六章 第六章 mysql日誌
第六章 mysql日誌 一 錯誤日誌 錯誤日誌的預設存放路徑是 mysql 存放資料的地方 hostname.err 1.修改錯誤日誌存放路徑 mysqld log error data mysql mysql.log 2.檢視配置命令 show variables like log error 3...