Skip to content

Instantly share code, notes, and snippets.

@cinhtau
Last active November 3, 2018 09:08
Show Gist options
  • Save cinhtau/558051c6106235c8c3aeb43fc6998452 to your computer and use it in GitHub Desktop.
Save cinhtau/558051c6106235c8c3aeb43fc6998452 to your computer and use it in GitHub Desktop.
Some examples for find
# search for name
find . -name invoice.pdf
# search for name, not case sensitive
find . -iname sales.*
# list only subdirectories
find . -type d -maxdepth 1
# find and delete
find myDir -name '.DS_Store' -delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment