This is an old revision of the document!
sed
is a text processing thingy that is very sophisticated.
sed
can be used to search and replace across files:
From:
cd /path/to/your/folder sed -i 's/foo/bar/g' *
This works on files in the working directory only–it is not recursive.