largest.sh
· 73 B · Bash
原始文件
# find and sort largest directories
du -h /www --max-depth=1 | sort -rh
1 | # find and sort largest directories |
2 | |
3 | du -h /www --max-depth=1 | sort -rh |
4 |