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

잔글 (로봇: 자동으로 텍스트 교체 (-<source lang='dos'> +<source lang='cli'>))
잔글 (로봇: 자동으로 텍스트 교체 (-[root@jmnote +[root@zetawiki))
11번째 줄: 11번째 줄:
;실행예시
;실행예시
<source lang='cli'>
<source lang='cli'>
[root@jmnote test]# ll
[root@zetawiki test]# ll
total 20
total 20
-rw-r--r-- 1 root root 7875 Jun 15 20:45 1.txt
-rw-r--r-- 1 root root 7875 Jun 15 20:45 1.txt
17번째 줄: 17번째 줄:
</source>
</source>
<source lang='cli'>
<source lang='cli'>
[root@jmnote 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='cli'>
[root@jmnote test]# ll
[root@zetawiki test]# ll
total 28
total 28
-rw-r--r-- 1 root root 7875 Jun 15 20:45 1.txt
-rw-r--r-- 1 root root 7875 Jun 15 20:45 1.txt
39번째 줄: 39번째 줄:
;실행예시
;실행예시
<source lang='cli'>
<source lang='cli'>
[root@jmnote test]# ll
[root@zetawiki test]# ll
total 20
total 20
-rw-r--r-- 1 root root 7875 Jun 15 20:45 1.txt
-rw-r--r-- 1 root root 7875 Jun 15 20:45 1.txt
45번째 줄: 45번째 줄:
</source>
</source>
<source lang='cli'>
<source lang='cli'>
[root@jmnote 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='cli'>
[root@jmnote test]# ll
[root@zetawiki test]# ll
total 8
total 8
-rw-r--r-- 1 root root 1189 Jun 15 20:51 1.txt.bz2
-rw-r--r-- 1 root root 1189 Jun 15 20:51 1.txt.bz2

2015년 2월 12일 (목) 02:36 판

리눅스 파일 각각 압축
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 }}