Unix Find Files Larger Than X
% find /home/colin/ -type f -size +1G -exec ls -lh {} \; or % find . -type f -print0 | xargs -0 du -h | sort -hr | head -20
% find /home/colin/ -type f -size +1G -exec ls -lh {} \; or % find . -type f -print0 | xargs -0 du -h | sort -hr | head -20