linux change string in multiple files
want to change a string in multiple files within a directory on linux (including all the sub-folders)?
here you go!
change directory to where your files are located
cd /u01/mydirectory
then run this
find ./ -type f -exec sed -i 's/oldstring/newstring/g' {} \;