openbsd-ports/editors/wordperfect/files/xwp
1998-12-19 21:12:56 +00:00

20 lines
288 B
Bash
Executable File

#!/bin/sh
# Wrapper for Corel WordPerfect.
#
# dugsong@OpenBSD.org
TMPDIR=/tmp/wp-$$
export TMPDIR
if ! mkdir -m 700 $TMPDIR ; then
echo "Error: $TMPDIR already exists, looks like:"
ls -alF $TMPDIR
exit 1
fi
trap 'rm -rf $TMPDIR ; exit 1' 0 1 2 3 13 15
y0y0y0/wpbin/xwp $*