documentation: replace POD header with comments

pull/180/head
Axel Burri 2017-08-28 20:33:00 +02:00
parent 88aa8c1fea
commit 8eb88a8681
1 changed files with 25 additions and 39 deletions

64
btrbk
View File

@ -1,43 +1,29 @@
#!/usr/bin/perl -T #!/usr/bin/perl -T
#
=head1 NAME # btrbk - Create snapshots and remote backups of btrfs subvolumes
#
btrbk - create snapshots and remote backups of btrfs subvolumes # Copyright (C) 2014-2017 Axel Burri
#
=head1 SYNOPSIS # This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
btrbk --help # the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
=head1 DESCRIPTION #
# This program is distributed in the hope that it will be useful,
Backup tool for btrfs subvolumes, taking advantage of btrfs specific # but WITHOUT ANY WARRANTY; without even the implied warranty of
send-receive mechanism, allowing incremental backups at file-system # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
level. # GNU General Public License for more details.
#
The full btrbk documentation is available at L<http://digint.ch/btrbk/>. # You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
=head1 AUTHOR #
# ---------------------------------------------------------------------
Axel Burri <axel@tty0.ch> # The official btrbk website is located at:
# http://digint.ch/btrbk/
=head1 COPYRIGHT AND LICENSE #
# Author:
Copyright (c) 2014-2017 Axel Burri. All rights reserved. # Axel Burri <axel@tty0.ch>
# ---------------------------------------------------------------------
This program 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 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
=cut
use strict; use strict;
use warnings FATAL => qw( all ); use warnings FATAL => qw( all );