Almost-minimal filesystem based blog.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

44 lines
796 B

#!/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);