Bash: Find all .hidden files but ignore .htaccess file

A bash command to search for all hidden files recursively in the current directory but ignore apache .htaccess files.

 bash | 
 
 copy code |
?

1
find . -type f \( -iname ".*" ! -iname ".htaccess" \)