### Find specific files or folders
```bash
find . --name "<filename>"
```
Use wildcard "`*`" before and/or after the file name string to search for partial strings.
Alternatively, pipe the results to `grep` using the `|`
```bash
find . | grep "<filename>"
```
You can also do the same with `ls`
```bash
ls | grep "<filename>"
```