A bash command to search for all hidden files recursively in the current directory but ignore apache .htaccess files.
find . -type f \( -iname ".*" ! -iname ".htaccess" \)
A bash command to search for all hidden files recursively in the current directory but ignore apache .htaccess files.
find . -type f \( -iname ".*" ! -iname ".htaccess" \)