sed中的变量使用

sed中的变量使用

我想在sed语句中使用变量,例如在语句sed -e '1d' text.txt中我想将行号换成变量,怎样换呢?
v=1
sed -e $v'd' text.txt
v=1
sed -e $v'd' text.txt
感谢感谢flashor,实验用sed -e ''$v'd' text.txt也可以