Reading from bottom to top:

alias releer {
var %tx = $lines(texto.ini)
while (%tx > 0) {
echo -s 7Privados $read(texto.ini,%tx)
dec %tx
}
}

reading from top to bottom:

alias releer {
var %tx = 1
while (%tx <= $lines(texto.ini)) {
echo -s 7Privados $read(texto.ini,%tx)
inc %tx
}
}