Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Calling a Rebol Script form a CGI

From: santilli::gabriele::gmail::com at: 27-Dec-2008 12:23

On Sat, Dec 27, 2008 at 6:36 AM, Peter W A Wood <pwawood-gmail.com> wrote:
> call "/Applications/Rebol/rebol -cs called.r"
I assume you are on OSX, or some other Unix. You'll want to try something like: call "/Applications/Rebol/rebol -qws called.r >/dev/null </dev/null" If the script output is of any importance, you'll want to redirect it to a log file instead, eg. call "/Applications/Rebol/rebol -qws called.r
>>/path/to/logfile.txt </dev/null"
(The </dev/null is probably unnecessary.) HTH, Gabriele.