Help for this page

Select Code to Download


  1. or download this
    sub x {
        ();
    ...
    
    use Data::Dumper; warn Dumper([\@x]);
    
  2. or download this
    @x = ();
    
  3. or download this
    sub get_remote_listing {
    
    ...
        \@files ;
    }
    
  4. or download this
     my $local  = get_local_listing ( $assigned_dir );
        print "local listing=@$local*****\n";
    ...
        my $remote = get_remote_listing $azx::auction{$A}->{ftp_dir};
        my @remote = defined($remote) ? @$remote : ();
    
  5. or download this
    sub bind_aref {
      my ($aref,$target_aref)=@_;
    
      @$target_aref = defined($aref) ? @$aref : ();
    }