I want to replace a string with another string in several text files. I tried the following command which I read from a Linux book, but it doesn't work. Can anyone give me some help?
[Linux]#find ./ -type f -exec sed 's/string1/string2' {} \;
Start Free Trial