I have the line below to echo values with tab between them. The text is also colored, however, some\t does not work.
The output of this one below will have the first two \t not working.
echo "\033[1;31m${var[a]}\t$time\t$end\t$day\t$score\033[m"
This one below will have all the \t working but will also print -e in the screen.
echo -e "\033[1;31m${var[a]}\t$time\t$end\t$day\t$score\033[m"
printf. You should probably look at its entry inksh --manorman kshto learn how to use its format strings, too.ksh93available, and the also availablekshis (for compatibility reasons) a ksh88. - So there should be no issue with availability of ksh's ANSI strings on AIX.