http://qs321.pair.com?node_id=287876


in reply to Re: How can I find and delete a line from a file?
in thread How can I find and delete a line from a file?

If you know the exact line number you want to "delete," try this one-liner:
perl -ni -e "print unless $. == $linenum" <filename>