|
|
message= | message= |
psselect=${PSSELECT:-psselect} | psselect=${PSSELECT:-psselect} |
psset=${PSSET:-psset} | psset=${PSSET:-psset} |
tmpdir=/tmp/$program.$$ |
tmpdir=`mktemp -d -t fixps.XXXXXX` || { echo "$program: Cannot create temporary dir!" >&2 ; exit 1; } |
| |
# These two must be kept in synch. They are opposed. | # These two must be kept in synch. They are opposed. |
verbose=echo | verbose=echo |
|
|
trap "/bin/rm -rf $tmpdir" 0 1 2 3 13 15 | trap "/bin/rm -rf $tmpdir" 0 1 2 3 13 15 |
fi | fi |
| |
mkdir $tmpdir |
|
| |
# If printing from stdin, save into a tmp file | # If printing from stdin, save into a tmp file |
if test $file = '-'; then | if test $file = '-'; then |