Monday, December 28, 2009

How to delete certain lines of text from a file in Bash using sed

"sed -i 1,+2d file_name"

deletes starting from line '1' and the next '2' lines, i.e. deletes the first 3 lines

No comments: