Sed (editor)

From wikieduonline
Revision as of 17:19, 8 December 2019 by Welcome (talk | contribs) (Created page with "<code>sed</code> utility is using for text processing, such as strings replacements. == Sed Basic examples == * Append a text (TEST_TO_APPEND_AT_BEGINNIG) at the beginning...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

sed utility is using for text processing, such as strings replacements.


Sed Basic examples

  • Append a text (TEST_TO_APPEND_AT_BEGINNIG) at the beginning of a line: sed -i s/^/TEST_TO_APPEND_AT_BEGINNIG/ file.txt
  • Append a text (TEST_TO_APPEND_AT_END) at the end of a line: sed -i s/$/TEST_TO_APPEND_AT_END/ file.txt

See also

Advertising: