Skip to content

Instantly share code, notes, and snippets.

@avkosme
Last active January 30, 2023 18:16
Show Gist options
  • Save avkosme/5f4a3cad33746dc79d3c70f2f0da4a11 to your computer and use it in GitHub Desktop.
Save avkosme/5f4a3cad33746dc79d3c70f2f0da4a11 to your computer and use it in GitHub Desktop.
Search files, count
# 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