# find / -name file1search file and directory into root filesystem from '/' [man]
# find / -user user1search files and directories belonging to 'user1' [man]
# find /home/user1 -name \*.binsearch files with '. bin' extension within directory '/ home/user1' [man]
# find /usr/bin -type f -atime +100search binary files are not used in the last 100 days [man]
# find /usr/bin -type f -mtime -10search files created or changed within 10 days [man]
# find / -name *.rpm -exec chmod 755 '{}' \;search files with '.rpm' extension and modify permits [man]
# find / -xdev -name \*.rpmsearch files with '.rpm' extension ignoring removable partitions as cdrom, pen-drive, etc.… [man]
# locate \*.psfind files with the '.ps' extension - first run 'updatedb' command [man]
# whereis haltshow location of a binary file, source or man [man]
# which haltshow full path to a binary / executable [man]