Quite often I find myself looking for files which contain the same text. Mainly config settings, etc.
On linux you can use this:
find ./ -type f -exec grep -l "<text to find>" {} \;
A bunch of ramblings about PHP programming, JQuery, MySQL and other 'stuff'
Quite often I find myself looking for files which contain the same text. Mainly config settings, etc.
On linux you can use this:
find ./ -type f -exec grep -l "<text to find>" {} \;