find /SIT -size +100M -exec du -h {} \; |sort -n |head -10 용량 및 경로까지만 나옴
[root@test ~]# find /test -size +100M -exec du -h {} \; |sort -n |head -10
147M /test/aux.txt
831M /test/ls.txt
find /SIT -size +100M -exec ls -l {} \; |sort -n |head -10
[root@test ~]# find /test -size +100M -exec ls -l {} \; |sort -n |head -10
-rw-r--r--. 1 root root 153845760 6월 13 13:41 /test/aux.txt
-rw-r--r--. 1 root root 870645760 6월 13 13:41 /test/ls.txt
'Linux' 카테고리의 다른 글
디렉터리 상세용량 확인 법 (0) | 2017.06.13 |
---|---|
인피니밴드 드라이버 및 펌웨어 업데이트 command (0) | 2017.06.13 |
os에서 gbic 및 port 확인 법 스크립트 (0) | 2017.06.13 |
Log Message 특정시간 추출 법 (0) | 2017.06.13 |
root가 사용 중인 프로세스 확인 (0) | 2017.06.07 |