in reply to What is the best way to remove(delete) specific lines from a very large file?

Just to add to the above suggestions (and more that will surely follow), it is most likely a job for grep:
cat big-file.txt | grep -v 'bad line' > new-file.txt

Or, alternatively:

perl -i.orig -pe '$_="" if /bad line/' big-file.txt