Linux Find and Locate Cheat Sheet/Find file by exact name

Search recursively for a specific filename.

Section: Find by Name and Type

Find file by exact name

bash
bash
find /var/log -name 'syslog'

Learn the surrounding workflow

Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.

Related commands

Same sheet · prioritizing Find by Name and Type
Case-insensitive name search
Match names regardless of case.
OpenIn sheetbashsame section
Find directories only
Restrict results to directories.
OpenIn sheetbashsame section
Find symbolic links
List symlink entries under a directory.
OpenIn sheetbashsame section
Find files larger than 100 MB
Search for large files using size filters.
OpenIn sheetbash1 tag match
Find world-writable files
Audit overly permissive files.
OpenIn sheetbash1 tag match
Delete old temporary files
Remove matching files directly from find.
OpenIn sheetbash1 tag match