According to http://linux.about.com/od/commands/l/blcmdl1_sed.htm
suppress automatic printing of pattern space
I\'ve tested wi
Just try a sed do-nothing:
sed '' file
and
sed -n '' file
First will print whole file but second will NOT print anything.