Help for this page

Select Code to Download


  1. or download this
    first value is /home/bob/2.scripts/pages/3.cw/template_stuff/aimages 
    Use of uninitialized value in concatenation (.) or string at template_
    +stuff/html7.pm line 127, <STDIN> line 2.
    array part is 
    ...
    AoA put failed 
    return is 3.cw15.html
    $
    
  2. or download this
    sub create_page {
    
      use 5.011;
    ...
      return "nothing";
    
    }
    
  3. or download this
      my $rvars = shift;
      my %vars  = %$rvars;
    
  4. or download this
      $vars{refc} = get_content($rvars);
      $rvars = \%vars;  ## will same trick work?
    
  5. or download this
      print "Put file to server(y/n)?: ";
      my $prompt2 = <STDIN>;
      chomp $prompt2;
      if ( $prompt2 eq ( "y" | "Y" ) ) {
        put_page( $sftp, $rvars );
      }
    
  6. or download this
      my $ref_content = $vars{refc};
      my @AoA         = @$ref_content;
      say "content----------";
    ...
        say "b is $b";
        $sftp->put( $a, $b ) or warn "AoA put failed $@\n";
      }