A brief introduction to Sed.

Brendan Ferris
Analytics Vidhya
Published in
5 min readNov 1, 2020

--

Pattern matching and text manipulation from the terminal.

Sed is an early UNIX program meant to function as a non-interactive ‘stream editor’. It is one of the earliest programs to support the use of regular expressions for pattern matching, and has remained a popular for editing and filtering streams of text from the command line. In this article, I’m going to go through some of the basics, and provide some…

--

--