list big files Mar 14, 2019 • ulysses Find out which files or directories are using up disk resources. # display the biggest files find -type f -exec du -Sh {} + | sort -rh | head -n 5 # display the biggest directories du -Sh | sort -rh | head -5