Mariano Alvarez Fernandez wrote:
Waldemar Schultz escribió:
Mariano Alvarez Fernandez wrote:
What about installing the file grx*.inf to $DJDIR/info/grx.inf ? so one can type 'info grx' to get started.
OK, but some aditional thing is needed to add it to the main menu, do you know what is it? (sorry my knowledge about info is very low)
GRX
- GRX: (grx). GRAPHICS
AFAIK these two lines have to be inserted into file '$DJDIR/info/dir' if not already present, so we need something like sed to do it :( maybe there exists a tool for it (installinfo?)
Some body knows?
from within the %DJDIR%\info directory and after copying the grx242um.inf file there you can issue
install-info -e "* grx (grx242um). GRAPHICS" grx242um.inf dir
if you do not want to cd to that directory you may use the /dev/env/DJDIR/ syntax (valid from v2.03) i.e.
cp grx242um.inf /dev/env/DJDIR/info/grx242um.inf install-info -e "* grx (grx242um). GRAPHICS" \ /dev/env/DJDIR/info/grx242um.inf \ /dev/env/DJDIR/info/dir (I have checked) In fact in would be better to rename everywhere grx242um.inf as grx.inf (or grx.info) so that every new version replaces the old one instead of adding a new entry.
Maurice