edit file with sed code example
Example 1: linux replace string in all files
sed -i 's/old-text/new-text/g' input.txt
Example 2: sed replace in file
sed -i 's/foo/bar/g' hello.txt
sed -i 's/old-text/new-text/g' input.txt
sed -i 's/foo/bar/g' hello.txt