Jonesy44 commented on a Page, Password Generator  -  Apr 09, 2008

cud use this ..

alias newpass {
  var %len = $rand(10,20), %c = 1, %g.pass = $null
  while (%c <= %len) {
    var %ln = $rand(1,2)
    if (%ln = 1) {
      var %g.pass = %g.pass $+ $rand(a,z)
    }
    else {
      var %g.pass = %g.pass $+ $rand(0,9)
    }
    inc %c 1
  }
  echo -a New pass ( $+ %len $+ ) : %g.pass
}
 Respond  
Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.