in reply to What is the best way to remove(delete) specific lines from a very large file?
cat big-file.txt | grep -v 'bad line' > new-file.txt [download]
Or, alternatively:
perl -i.orig -pe '$_="" if /bad line/' big-file.txt [download]