Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
sed -i 's/original/new/' notes.txt

I use the The -i to not signifies inline editing and also will have sed automatically create a backup file.

...