I want do a series of "search and replace" on a given file, say file.txt. For example,
s/foo/bar/g
s/abc/xyz/g
s/pqr/lmn/
g/string-delete/d
and so on.
How shuld I write all these actions in a script file and then run them on a single go on the target file.txt to save it to newfile.txt?
I saw this post Search and replace variables in a file using bash/sed but somehow couldn't get it to work for me.
Edit: i would prefer a vim/ed based solution Thanx tempora
You could just write a function wrap those commands, and call the function.
Note !!
the function below is an example, I added
%
in front of yours
cmd. because I guess you want to do substitution on whole buffer, not on "current" line. But you have to be careful, in this way, the previous replaced result could be replaced again by latter command, if the latter pattern matched. just adjust it as your needs.e.g. think about:
text:
fooc
you have%s/foo/ab/g
and%s/abc/def/g
source the function, then
will do the job.
you could of course create a command for that: