File: setup.shell

package info (click to toggle)
xlispstat 3.52.14-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 7,560 kB
  • ctags: 12,676
  • sloc: ansic: 91,357; lisp: 21,759; sh: 1,525; makefile: 521; csh: 1
file content (13 lines) | stat: -rwxr-xr-x 250 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
cat > $1 <<+++
#!/bin/sh
XLISPLIB=$2 export XLISPLIB
if test -f xlisp.wks; then WKS="xlisp.wks";
else WKS="\${XLISPLIB}/xlisp.wks";
fi
if test -f xlisp; then XLISP=xlisp;
else XLISP="\${XLISPLIB}/xlisp"
fi
exec \${XLISP} -w\${WKS} \$*
+++