Help for this page

Select Code to Download


  1. or download this
    my $password = mkpasswd();
    
    if ( $password =~ m/\"|\'/ ) {
        $password = mkpasswd();
    }
    
  2. or download this
    my $password;
    do {
      # theoretically it can get stuck in an infinite loop here...
      $password = mkpasswd();
    } while( $password =~ m/\"|\'/ );