sed -e 'COMMANDS'
Command to search-replace:
`s/REGEXP/REPLACEMENT/FLAGS' : search and replace
FLAGS: 'g'=apply to all matches
cat file | sed -e 's/ search-regexp/replace-text/option' >resultfile
Example:
sed -e 's/e/E/g'