FIND BIG FILES SSH

ТОП ДИРЕКТОРИЙ

du -h -a /dir | grep "[0-9]G\b" 
du -ah / | sort -rh | head -20

БОЛЬШИЕ ФАЙЛЫ

find / -size +500M -type f -exec du -h {} \; | sort -n
find / -size +100M -ls
find / -size +100M -size -1000M -ls
Обновлено: 07/02/2020 — 21:12