develog

[mac] du depth 1 본문

OS & Shell/Mac

[mac] du depth 1

냐옴 2020. 11. 25. 23:32
## human-readable, depth 1
du -hd1

## 용량 내림차순
du -d1 batch/* | sort -nr

## 용량이 MB, GB 인 것만 출력
du -hd1 batch/* | sort -nr | grep -E 'M|G'

'OS & Shell > Mac' 카테고리의 다른 글

[mac] .vimrc 설정  (0) 2020.11.27
[mac] 터미널에서 date 로 날짜 바꾸기  (0) 2020.11.27
[mac] port open check  (0) 2020.11.24
[mac] SQL Developer 실행안됨  (0) 2020.11.23
[mac] JDK 설정  (0) 2020.11.22
Comments