We have a bunch of old deprecated files that reside inside of 400 subdomain directories.
I'm trying to delete them out in 1 shot.
One of these old pages is called index1.php. I was able to figure out the following in SSH to give me a list of all these files.
I did get a list, but not a count, which would be very helpful.
find . -name index1.php
How do I go from this to make the server delete all these files it found with the name 'index1.php'
Thanks!!