Posted in Exploitation Linux

sed Tutorial

sed tutorial � sed introduction � sed examples #1 � sed commands � regular expressions � more sed examples intro home – top of the page – email sed – Stream EDitor – works as a filter processing input line by line. Sed reads one line at a time, chops off the terminating newline, puts what is left into the pattern space (buffer) where the sed script can process it (often using regular expressions), then if there anything to print – sed appends a newline and prints out the result (usually to stdout).

Continue Reading... sed Tutorial