___ # Tags #bash #find-command #commandline # Helpful Docs - https://www.redhat.com/sysadmin/linux-find-command # Notes - To find a file containing part of a word we'll use the the example of looking for all files within the `seclists` install that contain username information ``` find /usr/share/seclists -name '*user*' ``` - The results should look like this - ![[Pasted image 20240803123731.png]]