To find files which has specific text in your server
How to print the files which has a string through out the server: Use this command: find /www/*/httpdocs/ -type f -iname "*.php" | xargs grep 'string goes here'
How to print the files which has a string through out the server: Use this command: find /www/*/httpdocs/ -type f -iname "*.php" | xargs grep 'string goes here'