sed replace word / string syntax

The syntax is as follows: sed -i ’s/old-word/new-word/g’ *.txt

GNU sed command can edit files in place (makes backup if extension supplied) using the -i option. If you are using an old UNIX sed command version try the following syntax:

sed ’s/old/new/g’ input.txt > output.txt

Tags: cli, sed

{{ range .Keywords }} {{ . }} {{ end }}