Peper wrote:
And one more thing, is there any smarter way to read one line of file then
head -n x file|tail -n 1 ?

if you know the line number from the top:

sed -n ${line}p

if you don't know the number from the top but from the bottom, then tail | tail is your best bet...
--
gentoo-user@gentoo.org mailing list

Reply via email to