1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-04 07:35:42 +02:00
tldr/pages/osx/mdfind.md
2015-12-07 00:04:00 +01:00

15 lines
249 B
Markdown

# mdfind
> List files matching a given query
- Find a file by it's name
`mdfind -name {{file}}`
- Find a file by it's content
`mdfind {{query}}`
- Find a file containing a string, in a given directory
`mdfind -onlyin {{directory}} {{query}}`