hi guys, I have this loop:
alias test {
var %n 1
while (%n <= $lines(file.txt)) {
if ($1 isin $gettok($read(file.txt,%n),1,32)) {
echo -a %n
}
inc %n
}
}
I know it is very simple one but what if file.txt is very big and i want the loop to be done without freezing my mirc? is there anyway to control the speed of the loop?