User Tools

Site Tools


linux:sed

This is an old revision of the document!


Sed

Delete Line in File

To delete line 7 of test.txt

sed -i 7d test.txt

Append to All Lines

To add text to the end of each line in the file test.txt and put the result into test2.txt

sed 's/$/newtexttoaddon/g' test.txt > test2.txt

To Prepend to All Lines

To add text to the start of each line in the file test.txt and put the result into test2.txt

sed 's/^./newtexttoaddon/g' test.txt > test2.txt
linux/sed.1590395514.txt.gz · Last modified: (external edit)