Find all your WordPress installs
Posted: April 15th, 2009 | Author: Mark Anderson | Filed under: Asides | Tags: command line | No Comments »If you’ve got a bunch of WordPress installs on a server and need to find all of them, try this shell command:
find . -name “wp-config.php” -print > {your favorite path}/wpinstalls.txt
It worked for me!