find
Cheatsheet⚑
List files larger than⚑
find . -type f -size +100M
Options⚑
Types⚑
- Find only directories:
-type d
(https://unix.stackexchange.com/questions/46244/get-a-list-of-directory-names-with-find)
find . -type f -size +100M
-type d
(https://unix.stackexchange.com/questions/46244/get-a-list-of-directory-names-with-find)