Difference between revisions of "Sed (editor)"

From wikieduonline
Jump to navigation Jump to search
Line 29: Line 29:
 
* Add  at the beginning and end of a sentence: <pre><code> and </code></pre>
 
* Add  at the beginning and end of a sentence: <pre><code> and </code></pre>
 
<pre>sed s/'^'/'\<code\>'/ | sed s/'$'/'\<\/code\>'/</pre>
 
<pre>sed s/'^'/'\<code\>'/ | sed s/'$'/'\<\/code\>'/</pre>
 +
 +
* Add * at the beginning of the line:
 +
::[[sed]] s/^/"*"/
  
 
* Replace [[spaces]]:  
 
* Replace [[spaces]]:  

Revision as of 14:42, 15 October 2022

wikipedia:sed (1974) utility is using for text processing, such as strings replacements.

sed /xxx/yyy/g
  g - global 
brew install gnu-sed


Sed Basic examples

  • Replace all occurrences of TEXT_STRING
sed -i s/OLD_TEXT_STRING/NEW_TEXT_STRING/g file.txt
sed -i s/^/TEST_TO_APPEND_AT_BEGINNIG/ file.txt
Append a space at the beginning 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\>'/
  • Add * at the beginning of the line:
sed s/^/"*"/
sed s/' '//g
  • Delete chareacters before a pattern
sed -e 's/....yourtext/ yourtext/g' file.txt

Help

usage: sed script [-Ealn] [-i extension] [file ...]
      sed [-Ealn] [-i extension] [-e script] ... [-f script_file] ... [file ...]

Related

See also

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