[EMAIL PROTECTED] wrote:
brannon@strand /disks/redondo/brannon/rs/bp/experiment/99 : rebolof course - it's the nature of load. Do you see first char of what you got? ---> "[" - rebol loaded your script into block, so you need to do it in one of the following ways:
REBOL 2.1.2.4.2
Copyright (C) 1998-1999 REBOL Technologies
REBOL is a Trademark of REBOL Technologies
All rights reserved.Finger protocol loaded
Whois protocol loaded
Daytime protocol loaded
SMTP protocol loaded
POP protocol loaded
HTTP protocol loaded
FTP protocol loaded
NNTP protocol loaded
>> load http://rebol.org/file/recursive-dir.r
load http://rebol.org/file/recursive-dir.r
connecting to: rebol.org
REBOL - Security Check:
Script requests permission to open a port for read/write on: rebol.org
Yes, no, or abort? (Y/N/A) y
Y
== [
recursive-files: function [path [file!]] [files file file-list] [
files: load path
file-list: to-block 1 ...
>> recursive-files to-path "/tmp"
recursive-files to-path "/tmp"
** Script Error: recursive-files has no value.
** Where: recursive-files to-path "/tmp"
>> quit
quit
brannon@strand /disks/redondo/brannon/rs/bp/experiment/99 :
do load http://rebol.org/file/recursive-dir.r
or just directly: do http://rebol.org/file/recursive-dir.r
Does it help?
