Help for this page

Select Code to Download


  1. or download this
    use Module::Load;
    
    my $class = 'DTF::Wget';
    load $class;
    my $adapter = $class->new( 'input_line' => $input_line, 'dl_base_dir' 
    +=> $dl_base_dir, 'report_file' => $report_file );
    
  2. or download this
    package DTF::Wget;
    use strict;
    ...
    use Moose;
    
    with 'DTF::Transfer';
    
  3. or download this
    package DTF::Transfer;
    use strict;
    ...
    
        die scalar(keys %$self);
    }