テストデータ
test.txt
a
b
c
d
e
1行目を削除
$ sed 1d test.txt
b
c
d
e
2-4行目を削除
$ sed 2,4d test.txt
a
e
3-最終行までを削除
$ sed '3,$d' test.txt
a
b
test.txt
a
b
c
d
e
$ sed 1d test.txt
b
c
d
e
$ sed 2,4d test.txt
a
e
$ sed '3,$d' test.txt
a
b