Help for this page

Select Code to Download


  1. or download this
    my $inc; 
    $inc++ until ( not -e "$filename~$inc" );
    
  2. or download this
    sub good_filename {
        my $filename = shift;
    ...
        $inc++ until ( not -e "$filename~$inc" );
        return "$filename~$inc";
    }