find and replace in files from command line
I have about 60+ files that have a login and password in them lets just say its
DBI->connect ('davesbedroom',"masterman","secluded",'Oracle');
I need to change everyone of those files to read
DBI->connect ('davesbedroom',"masterman","jojo",'Oracle');
How can I do this from the linux command line easy?
|