I have a lot of files that contain string "abc" that I want to change
them to "123". I try to use sed like this:
#!/bin/sh
for i in `find . -type f -print`
do
sed s/abc/123 < $i >$i.temp
done
Please help me with the grammer of sed. Thanks.
-Zhihui
--