Find large files linux
Find files larger than 100MB sorted by size
find / -type f -size +100M -exec ls -lh {} \; 2>/dev/null | sort -k5 -rh | head -20
more linux
all 133 commands →
Find files larger than 100MB sorted by size
find / -type f -size +100M -exec ls -lh {} \; 2>/dev/null | sort -k5 -rh | head -20