Category: Linux sed

sed tutorial: sed replace

Sed replace, you can use the sed function: s, replace the text in the file. syntax: ➜ ~ sed 's/regexp/replacement/' file...

sed tutorial: sed append command

The sed append command can add a new line before or after the specified matching line. We do this by using sed a and i...