How to Delete Large Files on Shared Linux Clusters

Hongtao Hao / 2025-04-21

First, find the top largest files

find ~ -type f -exec du -h {} + | sort -rh | head -n 20
#Coding

Last modified on 2025-06-03 • Suggest an edit of this page