Удалить файлы htaccess во всех папках Linux
find . -type f -perm 0444 -name ".htaccess" -exec echo rm {} \;
Alert Alligator
find . -type f -perm 0444 -name ".htaccess" -exec echo rm {} \;