Sed Cheatsheet
Sed Cheatsheet
com
Sed commands
p Print pattern space sed -n '1,4 p' employee.txt
d Delete lines sed -n '1,4 d' employee.txt
w Write pattern space to file sed -n '1,4 w output.txt' employee.txt
a Append line after sed '2 a new-line' employee.txt
Sed and Awk 101 Hacks – Enhance your UNIX / Linux Life with Sed and Awk
Sed Cheat Sheet www.thegeekstuff.com
Sed and Awk 101 Hacks – Enhance your UNIX / Linux Life with Sed and Awk