I've found it almost impossible to pass quoted arguments (containing spaces) to REBOL 3 scripts. For example:

rebol -q script.r "foo bar" 40

If you examine system/script/args, it contains the string "foo bar 40". This is useless! Information was lost. I need to know that "foo bar" was the first argument and 40 was the second. If I examine system/options/args, I get the following block: ["foo" "bar" "40"]. Again, useless! Information was lost.

I suspect that the solution to this is to use argument delimiters of some kind, e.g.,

rebol -q script.r 'foo bar' -n 40

This could easily be handled by PARSE, but I still don't like it. It shouldn't be terribly difficult for system/options/args to contain one string per passed argument.

REBOL's a pleasure to use, and this is the first thing I've found with which I was really disappointed. :(

link|improve this question

Am I right to suspect that you are talking about REBOL 3 here? (The above (mis-)behaviour seems to be not present in REBOL 2.) – earl Jul 18 '11 at 11:11
I observed the same behaviour on 2.7.7 OS X. – rgchris Jul 18 '11 at 13:10
@earl Yeah, REBOL 3. Haven't tried it in REBOL 2, which I never use anymore. (I can get away with that because REBOL is chiefly a hobby language for me.) – Gregory Higley Jul 18 '11 at 15:44
feedback

2 Answers

The behaviour you observe is a bug in REBOL 3. Please report it.

(At the moment, R3 internally passes args from the OS to scripts as a single string, concatenating all original arguments in the process. R3 should pass arguments as a list of strings instead, effectively preserving the original argv stripped of arguments used by the interpreter itself.)


In REBOL 2, system/options/args is safer to use for command-line arguments, whereas system/script/args can be used to pass values between REBOL scripts more directly. I assume that similar behaviour will be kept for R3.

Here's a quick script to inspect argument parsing behaviour:

REBOL []
print system/version
print "options args:"
probe system/options/args
print "script args:"
probe system/script/args

REBOL 2, on OSX:

2.7.7.2.5
options args:
["foo bar" "40"]
script args:
"foo bar 40"

REBOL 3, on OSX:

2.100.111.2.5
options args:
["foo" "bar" "40"]
script args:
"foo bar 40"
link|improve this answer
feedback

You can escape the quotes:

rebol -q script.r \"foo bar\" 40

Don't know if this is a shortcoming of shell or REBOL?

link|improve this answer
1  
It looks like it is shortcoming of REBOL, because all other programs (batch scripts, C programs etc.) accept a double quoted string as one argument. – endo64 Jul 18 '11 at 13:27
1  
Under the hood the shell is throwing away the quotes, but still is passing Rebol argv[0] = foo bar and argv[1] = 40. – HostileFork Jul 18 '11 at 16:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.