find. -name .htaccess -execls-l {} \;
the above will find all .htaccess files in all subdirectories, starting from your current location, and "ls -l".
You can replace ls -l with rm -rf for example, to remove them.
find. -name .htaccess -execls-l {} \;
the above will find all .htaccess files in all subdirectories, starting from your current location, and "ls -l".
You can replace ls -l with rm -rf for example, to remove them.