1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-24 04:15:23 +02:00

Merge pull request #311 from greensn0w/patch-1

Add mdfind
This commit is contained in:
Igor Shubovych 2015-12-07 01:20:31 +02:00
commit ea2a8baf02

15
pages/osx/mdfind.md Normal file
View file

@ -0,0 +1,15 @@
# 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}}`