SED - Print - Print lines which do NOT match regexp

Emulates “grep -v”.

sed -n '/regexp/!p'          # method 1, corresponds to above
sed '/regexp/d'              # method 2, simpler syntax