Find Command Cheatsheet
Find things by name
find /path/to/search -name filenameFind things by name (case-insensitive)
find /path/to/search -iname filenameFind only files by name
find /path/to/search -name filename -type fmust notice that " " quotes, you must use it if you want to use wildcards otherwise it will not find , and also f in type stand for file
Find only directories by name
find /path/to/search -name dirname -type dFind file with insecure permission
find / -writable -type d 2>/dev/nullFind all symlinks
find /path/to/search -type lFind things by it's owner
find /path/to/search -user ownerFind executable files
find /path/to/search -type f -executableFind SUID files
find /path/to/search -perm -4000Find things changed in the last 24 hours
find /path/to/search -ctime -1Find files bigger than X Size
find /path/to/search -size +<size>
$ find ~ -size +5000MLast updated