qprint

Encodes and decodes data using quoted-printable encoding

brewmacoslinux
Try with needOr install directly
Source

About

Encoder and decoder for quoted-printable encoding

Commands

qprint

Examples

Encode a file to quoted-printable format$ qprint < input.txt > output.qp
Decode a quoted-printable encoded file$ qprint -d < encoded.qp > decoded.txt
Encode text directly from stdin$ echo 'Hello World!' | qprint