Difference between revisions of "Sed"

From PKC
Jump to navigation Jump to search
Line 5: Line 5:
  sed "/'/d" OriginalTextualContent.txt > NoSeparator.txt  
  sed "/'/d" OriginalTextualContent.txt > NoSeparator.txt  


For more explainations, see<ref>{{:Video/}}</ref>
[https://youtu.be/EACe7aiGczw?t=656 Click here to see the portion that talks about special characters]
<noinclude>
=References=
<references/>
=Related Pages=
[[Category:Unix Command]]
[[Category:Unix Command]]
</noinclude>

Revision as of 10:29, 13 January 2022

sed is a unix command for stream data editor.

Special Characters

When dealing with special characters, use a different set of separators. For example: when dealing with ', use the following command:

sed "/'/d" OriginalTextualContent.txt > NoSeparator.txt 

For more explainations, see[1] Click here to see the portion that talks about special characters


References

Related Pages