Difference between revisions of "Sed (editor)"

From wikieduonline
Jump to navigation Jump to search
Tags: Mobile web edit, Mobile edit
Line 5: Line 5:
 
== Sed Basic examples ==
 
== Sed Basic examples ==
  
* Replace a TEXT_STRING
+
* [[Replace]] a TEXT_STRING
 
:: <code>sed -i s/OLD_TEXT_STRING/NEW_TEXT_STRING/ file.txt</code>
 
:: <code>sed -i s/OLD_TEXT_STRING/NEW_TEXT_STRING/ file.txt</code>
  

Revision as of 06:52, 13 April 2021

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


Sed Basic examples

sed -i s/OLD_TEXT_STRING/NEW_TEXT_STRING/ file.txt
sed -i s/^/TEST_TO_APPEND_AT_BEGINNIG/ file.txt
Append a spce at the beggining of lines:
sed s/^./" "/
sed -i s/$/TEST_TO_APPEND_AT_END/ file.txt
  • Move N lines from text file to new file:
head -1000 input > output && sed -i '1,+999d' input [1]
  • Add at the beginning and end of a sentence:
    <code> and </code>
sed s/'^'/'\<code\>'/ | sed s/'$'/'\<\/code\>'/
 sed s/' '//g

Related commands

See also

  • https://stackoverflow.com/a/801036
  • Advertising: