Find Largest Files (UNIX)
Ever need to find which files are taking up the most room on your server in a particular directory? If so – you can easily find the largest files by running the following command: find -type f | xargs -I{} du -s “{}” | sort -rn | head -10 | cut -f2 | xargs -I{} […]