[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: texi2html: command line option problems
From: |
Karl Berry |
Subject: |
Re: texi2html: command line option problems |
Date: |
Mon, 27 Apr 2009 19:40:42 -0500 |
> . texi2html doesn't understand `-o /dev/null'. It aborts with
>
> *** /dev/ not writable
That doesn't seems to be a bug. -o /dev/null means that the use wants
to output to the file names /dev/null (or the directory if split).
If somebody wants to have the output goes to /Dev/null, it should be
.... -o - > /dev/null
Sorry Patrice, there is a special case in makeinfo for the "null
device". It's a useful convenience feature. If output is to /dev/null,
the normal splitting is omitted.
The magic string is "/dev/null" on Unixish systems, "NUL" on w32, and
either one on DJGPP. (Looking at the texinfo/system.h file.)