Hi all, Anyone knows if there is any way how to get the cycle below to work on *sorted* list of associative array indexes ?
options["pre-RTI"]="-aACDlmptnr"
options["fast-nondebug"]="-mn"
...
for item in ${!options[*]}; do
do-something-with ${options[${item}]}
done
Both solutions of using built-in or external commands would be appreciated.
v.
