NAME
App::Wallflower - Class performing the moves for the wallflower program
VERSION
version 1.015
SYNOPSIS
# this is the actual code for wallflower
use App::Wallflower;
App::Wallflower->new_with_options( \@ARGV )->run;
DESCRIPTION
App::Wallflower is a container for functions for the wallflower program.
new_with_options
App::Wallflower->new_with_options( \@ARGV );
Process options in the provided array reference (modifying it), and return a object ready to be run()
.
See wallflower for the list of options and their usage.
new
App::Wallflower->new( option => \%option, args => \@args );
Create an object ready to be run()
.
option
is a hashref of options as produced by Getopt::Long, and args
is an array ref of optional arguments to be processed by run()
run
Make wallflower dance.
Process the remaining arguments according to the options, i.e. either as URLs to save or as files containing lists of URLs to save.
AUTHOR
Philippe Bruhat (BooK) <book@cpan.org>
COPYRIGHT AND LICENSE
Copyright 2012-2018 by Philippe Bruhat (BooK).
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.