Useful sed command
Posting this more as a reminder to myself than anything else, but, if you need to replace all instances of the word old in a file with the word new this command is really handy!
sed -i 's/old/new/g' file.txt
Posting this more as a reminder to myself than anything else, but, if you need to replace all instances of the word old in a file with the word new this command is really handy!
sed -i 's/old/new/g' file.txt