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.

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


Posted

in

by

Tags: