Hello again buddy, you could always do something like this and just add it in a timer.. smile

Code:
alias urls {
  filter -cff urls.ini somefile.txt 
  var %x = 1,%f = somefile.txt
  while (%x <= $lines(%f)) {
    if ($gettok($read(%f,%x),2,$asc(=))) write $+(-l,$readn) somefile.txt $v1
    if (%x == $lines(%f)) url -l somefile.txt
    inc %x
  }
}


-andy