ubuntu temukan file kecuali nama

#Find all .dot files but ignore .htaccess file:
find . -type f \( -iname ".*" ! -iname ".htaccess" \)
GutoTrosla