#!/usr/bin/perl # # This file is part of App-Magpie # # This software is copyright (c) 2011 by Jerome Quelin. # # This is free software; you can redistribute it and/or modify it under # the same terms as the Perl 5 programming language system itself. # use 5.012; use strict; use warnings; package magpie; # ABSTRACT: Mageia Perl Integration Easy $magpie::VERSION = '2.010'; use Find::Lib '../lib'; use App::Magpie::App; $|++; # disabling buffered output App::Magpie::App->run; exit; __END__ =pod =encoding UTF-8 =head1 NAME magpie - Mageia Perl Integration Easy =head1 VERSION version 2.010 =head1 SYNOPSIS # for help purposes magpie commands magpie help magpie help subcommand # to really do stuff magpie =head1 DESCRIPTION This script is the main entry point to the Perl module L. It provides various subcommands whose list is available with C. You can get help for each command by running C. =head1 AUTHOR Jerome Quelin =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2011 by Jerome Quelin. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut