-1

Using Mac OS X Mavericks, how do I find file name patterns residing in different, unknown, directories (ie: would be equivalent of Windows/DOS command: dir /b \x*.y*) ?

  • [`man find`](https://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/man1/find.1.html) –  Apr 28 '14 at 14:39

1 Answers1

0

Using find(1):

find /path/to/directory -name \*.y\* -print
trojanfoe
  • 120,358
  • 21
  • 212
  • 242