skeeto/enchive

extract to stdout

Opened this issue · 4 comments

It would be very nice to have a way to extract files to stdout. I just want to display the contents of a file without actually extracting the file to disk. This would be useful in cases where I used to use gpg to store a passphrase for a program like offlineimap for example.

I have tried the following combinations and I get nothing to stdout.

$ enchive extract test.enchive | grep -i * -
$ enchive extract test.enchive | cat -

That makes sense, missed the < before. Thank you!