[REBOL] Re: Regarding /command and -w switch in win2K.
From: depotcity:telus at: 1-May-2001 12:39
Hi Brian
I have a /command runtime script that has a forever loop (below) that calls
a /view script randomly.
I create a shortcut to this runtime with the -w switch.
The /view scripts have a process, but the runtime doesn't. If i kill
everything with the name rebol attached (via the task manager/process), it
will still randomly popup view windows till a reboot.
;The runtime script...
rebol []
random/seed now
forever [
a: random 100
if a = 34 [call "view-script.r"]
wait .1
]
As for the runtime, it's a cost saving measure, and hides the script from
curious eyes.
Terry Brownell