Re: updmap: use tail -n 1 instead of tail -1

Thomas Esser <[email protected]> Fri, 26 Nov 2004 19:37:59 +0100
Newsgroups gmane.comp.tex.tetex.beta
Message-ID <[email protected]>
> Using updmap i receive the following warning:
> 
> tail: `-1' option is obsolete; use `-n 1' since this will be removed in
> the future

This is for reading config varibles from the config file. "tail -1"
is used to select the last of possibly several matches. "tail -n 1"
is not portable, unfortunately. I don't think that anybody has multiple
settings, so I'll change this into "sed q" which is portable (but selects
the first match instead).

Thanks,

Thomas