Command to search and display files with high utilization in a mount point. #du -a /tmp | sort -nr | cut -f2 | xargs du -s | head -n 10 ...
9 years ago
Command to search and display files with high utilization in a mount point.
#du -a /tmp | sort -nr | cut -f2 | xargs du -s | head -n 10
Replace /tmp with mount point of your choice and run command.