tldr/pages/osx/mdfind.md

16 lines
279 B
Markdown
Raw Normal View History

2015-10-26 11:55:32 +00:00
# mdfind
> List files matching a query
- Find a file named **"Inception"**
`mdfind -name inception`
- Find a file containing **"football"**
`mdfind football`
- Find a file containing **"football"**, in the directory **"~/Documents"**
`mdfind -onlyin ~/Documents football`