Difference between revisions of "Sed (editor)"
Jump to navigation
Jump to search
Line 10: | Line 10: | ||
* [[vi (editor)]] | * [[vi (editor)]] | ||
* {{grep}} | * {{grep}} | ||
− | * [[ | + | * [[Ansible]] [[lineinfile]] [[DevOps/Ansible/Modules|module]] |
− | + | ||
− | |||
[[Category:Linux]] | [[Category:Linux]] |
Revision as of 12:34, 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: