Last active
November 3, 2018 09:08
-
-
Save cinhtau/558051c6106235c8c3aeb43fc6998452 to your computer and use it in GitHub Desktop.
Some examples for find
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
# 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