Sed

Using Variables with Sed …

If you’ve every wanted to do some simple find and replace on string values sed is pretty straightforward way to do it from the command line or a script. Our starting sed command: sed 's/findme/replacewithme/g' file-to-search.txt > file-to-write-output.txt In this command we define a …