Ulrich Drepper wrote:
#! /bin/bash
export LC_ALL=C
exec /opt/Acrobat5/bin/acroread "$@"
Note that this will cause problems if you specify multiple files on the
command line. I found the following construct on Google, which seems to
work with both multiple files and files with spaces in their names (no
idea why though).
#!/bin/bash
LANG=en_US /opt/Acrobat5/bin/acroread ${1+"$@"}
--
========================================================================
Ian Pilcher i.pilcher@xxxxxxxxxxx
========================================================================