I basically want to do this:
cat file | grep \'\' | sed \'s///g\'
without having to
cat file | sed -n '//{s///g;p;}'