2. The following sed command removes the first 10 lines from a file:

a) Sed ‘1.10d’ < filename
b) Sed ‘/1,10/d’ < filename
c) Sed ‘/1/,/10d’ < file name
d) Sed ‘1-10d’ < filename

a) Sed ‘1.10d’ < filename