Find large files linux
Find files larger than 100MB on the entire filesystem
find / -type f -size +100M 2>/dev/null | sort
more linux
all 133 commands →
Find files larger than 100MB on the entire filesystem
find / -type f -size +100M 2>/dev/null | sort