head     1.3;
access   ;
symbols  ;
locks    ; strict;
comment  @# @;


1.3
date     92.07.31.16.33.12;  author ram;  state Exp;
branches ;
next     1.2;

1.2
date     92.07.13.14.45.19;  author ram;  state Exp;
branches ;
next     1.1;

1.1
date     92.05.29.14.13.25;  author ram;  state Exp;
branches ;
next     ;


desc
@Sample wrapper script to set up environment variables and start CMU CL
@


1.3
log
@Make that "$@@"
@
text
@#!/bin/sh
#
# Set up CMUCLLIB environment variable to point to run-time files.
CMUCLLIB=/<<your-cmucl-path>>/lib
export CMUCLLIB

#
# If /tmp is a "tmpfs" filesystem (mounted on "swap") then uncomment the
# following two lines, and fill in an alternate path:
#CMUCL_EMPTYFILE=/<<your-temp-path>>/empty
#export CMUCL_EMPTYFILE

#
# Run Lisp with these environment variables set.
exec /<<your-cmucl-path>>/bin/lisp "$@@"
@


1.2
log
@Change $* to $@@
@
text
@d15 1
a15 1
exec /<<your-cmucl-path>>/bin/lisp $@@
@


1.1
log
@Initial revision
@
text
@d15 1
a15 1
exec /<<your-cmucl-path>>/bin/lisp $*
@
