Author: Jonathan Osuch
Date:
To: Fractint developer's list
Subject: Re: [Fractdev] xfractint barfs when par names have - in them
Rich,
> bin/xfractint -disk -geometry ${render_width}x${render_height} \
> batch=yes savename=tmp.gif "@tmp.par/tmp" >&- 1>&- <&-
Does using the following do what you want in terms of closing stdout,
stderr, and stdin?
1>&1 2>&2 0<&0
Doing it this way doesn't cause Xfractint to exit prematurely.
Jonathan