Skip to content

Instantly share code, notes, and snippets.

@mwrites
Last active August 16, 2016 13:38
Show Gist options
  • Save mwrites/134f068383d520d23eac15ac01733c6d to your computer and use it in GitHub Desktop.
Save mwrites/134f068383d520d23eac15ac01733c6d to your computer and use it in GitHub Desktop.
#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