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

Add mdfind

This commit is contained in:
Lukas B 2015-10-26 12:55:32 +01:00
parent acf8756f56
commit 4449011ece

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

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