From: Alan D. <ado...@cs...> - 2004-09-16 17:22:45
|
On Thu, Sep 16, 2004 at 11:41:01AM -0400, Ken Anderson wrote: > It turns out you can only put one thing after the #! so you need do something like: > #! bin/run > > where run starts JScheme the way you want. So, i've updated this > example: http://openmap.bbn.com/~kanderso/jscheme/scriptometer/ If you want to exec the interpreter found by a PATH lookup, use the following trick: #!/usr/bin/env runscheme This used to be one way to get Perl to run before the path was "standardised" to /usr/bin/perl. HTH alan |