Hi

> I find it's not easy to understand what you want to do, could you give us an 
> example?

I wanted to be able to do something like that:
(unless
(or
(member "-r" (command-line))
(member "--repl" (command-line)))

(begin
(display "foo")
(newline)
(exit)))

And I figured out how to do it (and it's even more portable):
#!/bin/sh
exec guile -l "$0" -- "$@"
!#

Reply via email to