Last active
August 16, 2016 13:38
-
-
Save mwrites/134f068383d520d23eac15ac01733c6d to your computer and use it in GitHub Desktop.
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
#file in first sub directory | |
find . -iname "*.strings" -maxdepth 2 | |
#file with pattern | |
ls -d *.lproj | |
#file with pattern recurive | |
find . *.lproj -type d -print | |
#directory of file | |
find . -iname "*.strings" -maxdepth 2 -exec dirname {} \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment