본문 바로가기
Linux

압축파일 내부 파일 확인

by 루에 2017. 10. 13.
반응형
list the contents of a tar or tgz file
압축파일 내부 파일목록 보기
tar, tgz, bz2 내부 파일목록 보기

1 방법[편집]

tar
tar tvf 파일명.tar
tgz
tar ztvf 파일명.tgz
tar ztvf 파일명.tar.gz
bz2
tar tvf 파일명.bz2

2 실습[편집]

[root@zetawiki ~]# echo hello > hello.txt
[root@zetawiki ~]# echo world > world.txt
[root@zetawiki ~]# tar cvf temp.tar *.txt
hello.txt
world.txt
[root@zetawiki ~]# tar tvf temp.tar
-rw-r--r-- root/root         6 2014-03-24 22:32:17 hello.txt
-rw-r--r-- root/root         6 2014-03-24 22:32:22 world.txt


출처 : http://zetawiki.com/wiki/%EB%A6%AC%EB%88%85%EC%8A%A4_%EC%95%95%EC%B6%95%ED%8C%8C%EC%9D%BC_%EB%82%B4%EB%B6%80_%ED%8C%8C%EC%9D%BC%EB%AA%A9%EB%A1%9D_%EB%B3%B4%EA%B8%B0

반응형

댓글