Comment 4 for bug 256191

Revision history for this message
Derick Eddington (derick-eddington) wrote : Re: [Bug 256191] Re: scheme-script does not pass through the command line uninterpreted

On Sat, 2008-08-09 at 19:28 +0000, Derick Eddington wrote:
> Arguments to ikarus get split:
>
> $ ./command-line foo "bar baz"
> ("./command-line" "foo" "bar baz")
> $ ikarus --r6rs-script command-line foo "bar baz"
> ("command-line" "foo" "bar" "baz")
> $ ikarus -- foo "bar baz"
> Ikarus Scheme version 0.0.3+ (revision 1579, build 2008-08-09)
> Copyright (c) 2006-2008 Abdulaziz Ghuloum
>
> > (command-line)
> ("*interactive*" "foo" "bar" "baz")
> >

That splitting of the arguments is because of my custom ikarus-mine.sh
wrapper aliased to ikarus. It's not an issue with Ikarus. Sorry.