Find Command
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 fFind 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 executable files
Find SUID files
Find things changed in the last 24 hours
Find files bigger than X Size
Last updated