원하는 파일들의 크기 총합을 알 수 있을까요? 가령, du -hs . 이렇게 하면 그 디렉토리 안의 전체 파일 크기 합을 나타내는데요, 원하는 파일들만 선택해서, (가령 my???.data) 그 파일들의 전체 크기를 알고 싶어서요.
감사합니다.
du has an option to produce gran total.
du -ch my???.data
짧은 답 :
du *txt -ch
find를 사용해야 하는 경우 :
$ find './VirtualBox VMs' -name '*.vdi' -print0 | \ du --files0-from=- -ch 4.2G VirtualBox VMs/Ubuntu 10.10/Ubuntu 10.10.vdi 1.7G VirtualBox VMs/Ubuntu server 11.10/Ubuntu server 11.10.vdi 5.6G VirtualBox VMs/Ubuntu-11.10/Ubuntu-11.10.vdi 3.2G VirtualBox VMs/ElementaryOS Jupiter/ElementaryOS Jupiter.vdi 15G VirtualBox VMs/7/7.vdi 3.3G VirtualBox VMs/Ubuntu 12.04/Ubuntu 12.04.vdi 33G total
find를 사용한 경우이구요. 디렉토리 하나에 몰려 있는 경우라면 du *.vdi 이런 식으로 사용 하면 됩니다.
find
du *.vdi
du가 디렉토리 이름 하나만 인자로 받는게 아니라 여러 개의 파일들을 지정할 수 있습니다.
du
-- 마잇
텍스트 포맷에 대한 자세한 정보
<code>
<blockcode>
<apache>
<applescript>
<autoconf>
<awk>
<bash>
<c>
<cpp>
<css>
<diff>
<drupal5>
<drupal6>
<gdb>
<html>
<html5>
<java>
<javascript>
<ldif>
<lua>
<make>
<mysql>
<perl>
<perl6>
<php>
<pgsql>
<proftpd>
<python>
<reg>
<spec>
<ruby>
<foo>
[foo]
$ du -ch my???.data
du has an option to produce gran total.
will give you the answer.
짧은 답 : du *txt -ch find를
짧은 답 :
find를 사용해야 하는 경우 :
find
를 사용한 경우이구요. 디렉토리 하나에 몰려 있는 경우라면du *.vdi
이런 식으로 사용 하면 됩니다.du
가 디렉토리 이름 하나만 인자로 받는게 아니라 여러 개의 파일들을 지정할 수 있습니다.--
마잇
댓글 달기