This is kind of an old topic, but I just found a solution and thought I’d share it.
The issue is that Cloverleaf sometimes lists files in the raw order of the directory, not sorted by name like “ls”. For fun, here is a one-liner to see those unsorted entries.
perl -e ‘opendir(DIR,”.”);print map {”$_n”} readdir(DIR)’
In AIX, moving files from one directory to another is enough to alter the listings. Here are some commands to temporarily sort the Xlates (according to your shell’s wild card expansion sequence).
cd $HCISITEDIR/Xlate
mkdir SORTDIR
mv *.xlt SORTDIR
mv SORTDIR/* .
rmdir SORTDIR
Just be careful and don’t remove all your Xlates accidentally! 🙂