Difference between revisions of "Sed (editor)"

From wikieduonline
Jump to navigation Jump to search
(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...")
 
Line 8: Line 8:
  
 
== See also ==
 
== See also ==
* [[text editing with vi and vim|vi (editor)]]
+
* [[vi (editor)]]
* [[linux/Basic commands/awk|awk]]
+
* {{awk}}
 
* [[tr]]
 
* [[tr]]
 
* [[DevOps/Ansible|Ansible]] [[lineinfile]] [[DevOps/Ansible/Modules|module]]
 
* [[DevOps/Ansible|Ansible]] [[lineinfile]] [[DevOps/Ansible/Modules|module]]

Revision as of 12:33, 26 December 2019

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: