Multiline shebang: Difference between revisions

Content added Content deleted
(→‎{{header|Scheme}}: bash idioms)
Line 92: Line 92:
Here, the script name is passed once to CLISP and once to ext:*args*, which normally omits it.
Here, the script name is passed once to CLISP and once to ext:*args*, which normally omits it.


<lang lisp>#!/bin/bash
<lang lisp>#!/bin/sh
#|
#|
exec clisp -q -q $0 $0 ${1+"$@"}
exec clisp -q -q $0 $0 ${1+"$@"}
exit
|#</lang>
|#</lang>