[REBOL] Re: problem with system/script/args/1
From: ric:getorbital at: 2-Sep-2001 10:05
You can fix the Windows file association to pass arguments on to the script.
>From a file-explorer window, follow the following path:
Tools --> Folder Options --> File Types --> Rebol --> Advanced --> Edit
(You'll have to scroll down to find Rebol, and you have to select the
default (bold-faced) association if there is more than one.)
There you'll find a string like, "c:\rebol\command\rebol.exe" -qs "%1"
Change it to, "c:\rebol\view\rebol.exe" -qs "%1" %*
That %* at the end passes all the remaining arguments to the script.
-- Ric