Marcs Notes
Suche
Search
Dunkler Modus
Heller Modus
Explorer
Home
❯
coding
❯
cli commands
❯
Unix CLI command to find large files
Unix CLI command to find large files
10. Juni 2025
1 min read
find
/
-type
f
-size
+200M
-exec
du
-h
{}
+
2>
/dev/null
|
sort
-r
-h
Graphansicht