[REBOL] Re: Calling a Rebol Script form a CGI
From: pwawood:gma:il at: 28-Dec-2008 13:40
Sunanda
> One possibility is to redefine 'print before the call:
>
> saved-print: get in system/words 'print
> print: func [data][]
> ----code here to call other script-----
> set in system/words 'print :saved-print
I guess I could just use a my-print function in the called script to
re-direct the print from the called script. Though I could re-direct
the output with either the /output option or by piping the output in
the command.
Regards
Peter