suppose I have a text file as follows.
create table "kevin".tb1 {
col1,
col2
}
create table "jhone".tb2 {
col1,
col2
}
create table "jake".tb3 {
col1,
col2
}
I need to obtain that text file as follows by replacing every table owner name occurrences replace witha same name called "informix".
out put should be like
create table "informix".tb1 {
col1,
col2
}
create table "informix".tb2 {
col1,
col2
}
create table "informix".tb3 {
col1,
col2
}
in vi editor ,
:%s/"kevin"/"informix"/g
I can replace them individually but I need to do all of them at once.