15 lines
306 B
Bash
15 lines
306 B
Bash
#!/bin/bash
|
|
|
|
|
|
common_dir_list=(/var/lib/docker/ /var/log/ /root/ /data /home)
|
|
|
|
# 查找最深3级目录并计算空间占用
|
|
|
|
for dir in "${common_dir_list[@]}"
|
|
do
|
|
echo "start to find disk usage of $dir"
|
|
find "$dir" -mindepth 1 -maxdepth 6 -exec du -sh {} + | sort -hr | head -n 10
|
|
echo ""
|
|
done
|
|
|