Ok, I figured it out myself but it took a while.
On my system I need to do the following
lisp -L myFile.l -kill
this runs myFile and then exits, however, it prints a 2 line banner at
the beginning and a one line shutdown message at the end. I do not think
it is possible to suppress this using commandline arguments to lisp(if
it is please correct me). To eliminate the first 2 lines and the last
line from showing up I just pipe my output through sed so that the
commandline I now use looks like this
lisp -L myFile.l -kill | sed '1,2d;$d'
My motivation in doing this was to mimic my workflow habits in
developing python(and scheme). If anyone else is interested in this, I
hope this helps.
> If anyone else is interested in this, I
> hope this helps.
I don't think this is a very populated newsgroup. Try comp.lang.lisp or
some Franz mailing list instead.
Pascal