필기 제6 장: 포장 압축

《 Linux Shell 스 크 립 트 공 략 》 노트
제6 장: 포장 압축
/ / 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;
do
        tar -rvf archive.tar $textfile  //          .
done

gzip archive.tar  //      

/ / 압축 풀기 -x 파일 추출; -z gzip 스타일 사용.
[root@localhost touch_more]# tar -zxvf archive.tar.gz -C ./test_unzip/
저자: 명 이 천하
전재 출처, 원문 주소:http://blog.csdn.net/laoyang360/article/details/42364849
만약 에 본 고가 당신 에 게 도움 이 된다 고 느낀다 면 '꼭대기' 를 클릭 하여 지지 해 주 십시오. 당신 의 지 지 는 제 가 창작 을 견지 하 는 가장 큰 동력 입 니 다. 감사합니다!

좋은 웹페이지 즐겨찾기