#!/bin/sh cat > $1 <<+++ #!/bin/sh XLISPLIB=$2 export XLISPLIB XLSLIBEXEC=$3 export XLSLIBEXEC if test -f xlisp.wks; then WKS="xlisp.wks"; else WKS="\${XLSLIBEXEC}/xlisp.wks"; fi if test -f xlisp; then XLISP=xlisp; else XLISP="\${XLSLIBEXEC}/xlisp" fi exec \${XLISP} -w\${WKS} \$* +++