Displays everything except `.git, .terraform and .idea`: `% find . -type f ! \( -path "*/.git/*" -o -path "*/.terraform/*" -o -path "*/.idea/*" \) -exec echo "File: " {} \;` Keep the exec, replace the echo and operations can be performed on each file.
Displays everything except
.git, .terraform and .idea:% find . -type f ! \( -path "*/.git/*" -o -path "*/.terraform/*" -o -path "*/.idea/*" \) -exec echo "File: " {} \;Keep the exec, replace the echo and operations can be performed on each file.