Find Examples
# Exclude log files from find:
find . -type f \( -iname “*.*” ! -iname “*log*” \) | xargs grep “searchString”
Knowledge Hub for DevOps Admins
# Exclude log files from find:
find . -type f \( -iname “*.*” ! -iname “*log*” \) | xargs grep “searchString”