Consider the following commands.
$ sed -n '1,2p' emp.lst
$ sed -n '3,$!p' emp.lst
The output of both commands will be the same.
$ sed -n '1,2p' emp.lst
$ sed -n '3,$!p' emp.lstA. True
B. False
Answer: Option A

Join The Discussion