Tag: htaccess
-
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” \)
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” \)