2015-10-26 23:08:17 +00:00
|
|
|
pembody
|
|
|
|
|
|
|
|
This is a utility for decoding PEM-encoded files and spewing their
|
2016-04-28 21:15:35 +00:00
|
|
|
contents to standard output. No trailing newline is appended. If
|
|
|
|
the filename is "-", pembody reads from standard input.
|
2015-10-26 23:08:17 +00:00
|
|
|
|
|
|
|
Example:
|
|
|
|
$ cat file.pem
|
|
|
|
-----BEGIN TEST DATA-----
|
|
|
|
c2FtcGxlIGJpbmFyeSBkYXRh
|
|
|
|
-----END TEST DATA-----
|
|
|
|
$ pembody file.pem
|
|
|
|
sample binary data$
|
|
|
|
|