Command Line Basics - Part 6: Find | Ray Wenderlich Videos

Learn how to search through a deep hierarchy of folders to find any file or type of file you're looking for without opening Finder and doing it manually.


This is a companion discussion topic for the original entry at https://www.raywenderlich.com/4729-command-line-basics/lessons/6

When searching by file extension the command find . -name *.hs didn’t worked for me. I have to wrap name parameter value in quotation marks. Like this find . -name "*.hs" and then all worked perfectly.

1 Like

The same. Thank you.

@interactivexr @pravdivy Thank you for sharing your solution - much appreciated! :]