Bump version and update Changes
[www-offliberty.git] / off
CommitLineData
a0765f3d
MG
1#!/usr/bin/perl
2use 5.008009;
3use strict;
4use warnings;
182562fe
MG
5
6use Getopt::Long qw/GetOptions/;
7use WWW::Offliberty qw/off/;
8
a0765f3d
MG
9GetOptions ('param=s' => \my %params);
10print "$_\n" for off shift, %params;
182562fe
MG
11
12__END__
13
14=encoding utf-8
15
16=head1 NAME
17
18off - Offliberate this
19
20=head1 SYNOPSIS
21
22 off 'http://vimeo.com/whatever'
23 off --param video_file=1 'http://youtube.com/watch?v=something'
24 off --param param1=value1 --param param2=value2 link_to_offliberate
25
26=head1 DESCRIPTION
27
d3123fb8
MG
28off is a command-line interface to the offliberty.com download
29service. It prints a list of download URLs for a given resource (e.g.
30a youtube video). You can also send parameters using the C<--param>
31argument. See the L<WWW::Offliberty> documentation for more
32information about parameters.
182562fe
MG
33
34=head1 SEE ALSO
35
36L<WWW::Offliberty>, L<http://offliberty.com>
37
38=head1 AUTHOR
39
40Marius Gavrilescu, E<lt>marius@ieval.roE<gt>
41
42=head1 COPYRIGHT AND LICENSE
43
d3123fb8 44Copyright (C) 2013-2015 by Marius Gavrilescu
182562fe
MG
45
46This library is free software; you can redistribute it and/or modify
47it under the same terms as Perl itself, either Perl version 5.18.1 or,
48at your option, any later version of Perl 5 you may have available.
49
50
51=cut
This page took 0.010975 seconds and 4 git commands to generate.