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:
sh$ cat FILE | z85_convert

DESCRIPTION

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

Padding is applied automatically.

A trailing newline is not printed.

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>