Last active
December 28, 2020 20:44
-
-
Save likethesky/3559671 to your computer and use it in GitHub Desktop.
find: Usage of Unix find command
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find . -name '*lookingfor*' -print | |
-or- | |
find /path/you/want/to/start/in -name '*.rb' -print | |
-or- | |
# On OS X (searched indexed spotlight files, both user & system): | |
mdfind filename.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment