Last active
January 30, 2023 18:16
-
-
Save avkosme/5f4a3cad33746dc79d3c70f2f0da4a11 to your computer and use it in GitHub Desktop.
Search files, count
This file contains 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
# Recursive search | |
find . -type f -name '*.log' -printf x | wc -c | |
# Non-recursive search | |
find . -maxdepth 1 -type f -name '*.log' -printf x | wc -c | |
# Delete by .ext | |
find /path/ -maxdepth 3 -type f -name "*.xlsx" -delete |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment