#!/usr/bin/env perl
|
|
|
|
=pod
|
|
|
|
=head1 NAME
|
|
|
|
wrt-version - print the installed version of wrt
|
|
|
|
=head1 USAGE
|
|
|
|
wrt version
|
|
wrt --version
|
|
wrt -v
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
C<wrt-version> displays the currently installed version of wrt.
|
|
|
|
Detailed documentation for wrt can be found in the L<App::WRT> man page or at
|
|
L<https://code.p1k3.com/gitea/brennen/wrt>.
|
|
|
|
=head1 LICENSE
|
|
|
|
wrt is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
=head1 AUTHOR
|
|
|
|
Brennen Bearnes <code@p1k3.com>
|
|
|
|
=cut
|
|
|
|
use 5.10.0;
|
|
|
|
use strict;
|
|
use warnings;
|
|
no warnings 'uninitialized';
|
|
|
|
use App::WRT;
|
|
|
|
print $App::WRT::VERSION;
|
|
exit(0);
|