[REBOL] Re: Curious output on console
From: sqlab::gmx::net at: 2-Nov-2006 16:21
Which version do you use.
It looks as if you print beyond the end of your data. Maybe your memory
is garbled.
I guess you can simplify your script like
this
foreach l2 b [
if all [
parse l2 [
to ".js" to end |
to ".vbs" to end |
to "\\" to end |
to ".cmd" to end |
to "psexec" to end |
to "net use" to end |
to "ftp " to end |
to "psftp" to end |
]
not find l2 "d:\dwh"
not find l2 "rem"
not find l2 "echo"
not find l2 "db2cmd"
not find l2 "<p>"
not find l2 "run task for"
][
print ln
Thorsten Moeller wrote: