"리눅스 파일 각각 압축"의 두 판 사이의 차이

잔글 (로봇: 자동으로 텍스트 교체 (-[root@jmnote +[root@zetawiki))
잔글 (봇: 자동으로 텍스트 교체 (-<source lang='cli'> +<source lang='console'>))
10번째 줄: 10번째 줄:


;실행예시
;실행예시
<source lang='cli'>
<source lang='console'>
[root@zetawiki test]# ll
[root@zetawiki test]# ll
total 20
total 20
16번째 줄: 16번째 줄:
-rw-r--r-- 1 root root 9450 Jun 15 20:45 2.txt
-rw-r--r-- 1 root root 9450 Jun 15 20:45 2.txt
</source>
</source>
<source lang='cli'>
<source lang='console'>
[root@zetawiki test]# find . -name '*.txt' -exec tar cjvf {}.bz2 {} \;
[root@zetawiki test]# find . -name '*.txt' -exec tar cjvf {}.bz2 {} \;
./2.txt
./2.txt
./1.txt
./1.txt
</source>
</source>
<source lang='cli'>
<source lang='console'>
[root@zetawiki test]# ll
[root@zetawiki test]# ll
total 28
total 28
38번째 줄: 38번째 줄:


;실행예시
;실행예시
<source lang='cli'>
<source lang='console'>
[root@zetawiki test]# ll
[root@zetawiki test]# ll
total 20
total 20
44번째 줄: 44번째 줄:
-rw-r--r-- 1 root root 9450 Jun 15 20:45 2.txt
-rw-r--r-- 1 root root 9450 Jun 15 20:45 2.txt
</source>
</source>
<source lang='cli'>
<source lang='console'>
[root@zetawiki test]# find . -name '*.txt' -exec sh -c "tar cjvf {}.bz2 {}; rm -f {};" \;
[root@zetawiki test]# find . -name '*.txt' -exec sh -c "tar cjvf {}.bz2 {}; rm -f {};" \;
./2.txt
./2.txt
./1.txt
./1.txt
</source>
</source>
<source lang='cli'>
<source lang='console'>
[root@zetawiki test]# ll
[root@zetawiki test]# ll
total 8
total 8

2016년 3월 29일 (화) 13:43 판

리눅스 파일 각각 압축
tar 파일 각각 압축

1 각각 압축

현재 폴더의 모든 txt 파일을 bz2로 압축

명령어
find . -name '*.txt' -exec tar cjvf {}.bz2 {} \;
실행예시
[root@zetawiki test]# ll
total 20
-rw-r--r-- 1 root root 7875 Jun 15 20:45 1.txt
-rw-r--r-- 1 root root 9450 Jun 15 20:45 2.txt
[root@zetawiki test]# find . -name '*.txt' -exec tar cjvf {}.bz2 {} \;
./2.txt
./1.txt
[root@zetawiki test]# ll
total 28
-rw-r--r-- 1 root root 7875 Jun 15 20:45 1.txt
-rw-r--r-- 1 root root 1189 Jun 15 20:45 1.txt.bz2
-rw-r--r-- 1 root root 9450 Jun 15 20:45 2.txt
-rw-r--r-- 1 root root 1193 Jun 15 20:45 2.txt.bz2

2 각각 압축 후 삭제

현재 폴더의 모든 txt 파일을 bz2로 압축한 후 txt 파일은 삭제

명령어
find . -name '*.txt' -exec sh -c "tar cjvf {}.bz2 {}; rm -f {};" \;
실행예시
[root@zetawiki test]# ll
total 20
-rw-r--r-- 1 root root 7875 Jun 15 20:45 1.txt
-rw-r--r-- 1 root root 9450 Jun 15 20:45 2.txt
[root@zetawiki test]# find . -name '*.txt' -exec sh -c "tar cjvf {}.bz2 {}; rm -f {};" \;
./2.txt
./1.txt
[root@zetawiki test]# ll
total 8
-rw-r--r-- 1 root root 1189 Jun 15 20:51 1.txt.bz2
-rw-r--r-- 1 root root 1193 Jun 15 20:51 2.txt.bz2

3 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}