The scrcopy shell script referred to in section 3.3.7.3.2
of the installation guide, necessary for enabling the
Copy menu item of the ilabel utility,
is erroneous.
The corrected script, which then must be customized for your
site as described in the installation guide, is shown in full below:
#!/bin/sh
/usr/sbin/scrsave /tmp/sc.$$ $*
COLORPRINTER=${COLORPRINTER:-alanine}
echo Sending image to color PostScript printer $COLORPRINTER
if [ -x /usr/local/bin/lpr ]; then
/usr/local/midas/bin/itops -azq /tmp/sc.$$ | /usr/local/bin/lpr -P$COLORPRINTER &
else
/usr/local/midas/bin/itops -azq /tmp/sc.$$ | /usr/bsd/lpr -P$COLORPRINTER &
fi