when the input files are specified to Join with wildcards, Join first sorts the files and then concatenates them. I have just noticed, though, that now the concatenation is performed in reverse (before, I'm pretty sure that the sort order was increasing).
Here's a simple script for a quick test.
Code: Select all
Set i 0
Lab loop
Echo "$i " NOLINE >RAM:test$i
Set i `Eval $i + 1`
If NOT $I EQ 10
Skip BACK loop
EndIf
Join RAM:test? TO RAM:test
Type RAM:test