Issue
According to http://linux.about.com/od/commands/l/blcmdl1_sed.htm
I've tested with or without -n
, sed will produce same result
I dont understand what space does it means.
Solution
Just try a sed do-nothing:
sed '' file
and
sed -n '' file
First will print whole file but second will NOT print anything.
Answered By - anubhava Answer Checked By - Candace Johnson (WPSolving Volunteer)