Help for this page

Select Code to Download


  1. or download this
    $ver = $ver +1;
       |
       |
       V
    $ver++;
    
  2. or download this
            if ($command =~ /<VER NUMBER> /)
            {
                $command =~ s/<VER NUMBER>/$ver/;
            }
    
  3. or download this
            $command =~ s/<VER NUMBER> /$ver /;