Skip to content

Commit

Permalink
Merge pull request #164 from jgpuckering/master
Browse files Browse the repository at this point in the history
Add metadata POD to base64 and hexdump
  • Loading branch information
briandfoy committed Jun 16, 2023
2 parents 35bd94e + ba4d9f7 commit ede4118
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
14 changes: 14 additions & 0 deletions bin/base64
@@ -1,5 +1,19 @@
#!/usr/bin/perl

=begin metadata
Name: base64
Description: encode and decode base64 data
Author: Michael Mikonos
License: perl
=end metadata
=cut

use strict;
use warnings;

use Getopt::Std qw(getopts);
use MIME::Base64 qw(decode_base64 encode_base64);

Expand Down
14 changes: 14 additions & 0 deletions bin/hexdump
@@ -1,5 +1,19 @@
#!/usr/bin/perl

=begin metadata
Name: hexdump
Description: print input as hexadecimal
Author: Michael Mikonos
License:
=end metadata
=cut

use strict;
use warnings;

use Getopt::Std qw(getopts);

my (%opt, @chars, @cesc, $adr, $nread, $curf, $skip);
Expand Down

0 comments on commit ede4118

Please sign in to comment.