Ruud:Cudo's and admirations !
Noticed you fixed the old command line loop-o-death bug ! For those not familiar with this bug, it worked like this:
One normally passes command like arguments to a kix script like this...
kix32 script.kix $arg="some string"
But when specified like this...
kix32 script.kix $arg
and then referenced in a script like this...
?"command line argument=$arg"
it caused KiXtart to enter an infinite loop clocking-in at 100% cpu cycles ! This has now been fixed in KiX2K1 !
From one who has deployed a lot of command line driven admin scripts, a tip of the hat to you Sir !
code:
; call this script exactly as follows ...
;
; kix32 script.kix $arg
break on
?"command line arg=$arg"
exit
Shawn.