The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

z85_convert - Command line interface to Convert::Z85

SYNOPSIS

  # Encode Z85 from file:
  sh$ z85_convert --file FILE

  # Decode Z85 from file:
  sh$ z85_convert --decode --file FILE
  
  # Encode Z85 from STDIN (and wrap at 76 columns):
  sh$ cat FILE | z85_convert -w 76

DESCRIPTION

A trivial command line interface to the Z85 encoding, as implemented by Convert::Z85.

Padding is applied automatically.

OPTIONS

decode

Decode, rather than encode, the given input.

file

A file path to encode or "decode".

If none is specified, STDIN is taken as input instead.

AUTHOR

Jon Portnoy <avenj@cobaltirc.org>