Created
May 13, 2009 19:50
-
-
Save smbrown/111251 to your computer and use it in GitHub Desktop.
find dot files
This file contains hidden or 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 all dot files, but omit the pesky OS X .DS_Store files | |
| find . -name ".*" -type f ! -name ".DS_Store" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment