- or download this
sub x {
();
...
use Data::Dumper; warn Dumper([\@x]);
- or download this
@x = ();
- or download this
sub get_remote_listing {
...
\@files ;
}
- 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 : ();
- or download this
sub bind_aref {
my ($aref,$target_aref)=@_;
@$target_aref = defined($aref) ? @$aref : ();
}