Tip Category 14 tips command-line

Command Line

14 Total Tips
6 Beginner
7 Intermediate
1 Advanced
How to Find Large Files on Linux? Quick Answer: Use find / -type f -size +100M -ls 2>/dev/null to locate all files larger than 100MB...
Bash
find / -type f -size +100M -ls 2>/dev/null
luc 10 min read
Read Tip