Sha256: 751945afd9946fb84fa45f3488d5d0f699cde077c2a7f2606206928a239d9295

Contents?: true

Size: 1.01 KB

Versions: 12

Compression:

Stored size: 1.01 KB

Contents

# ReadOnce

Readonce is a command line utility for sharing passwords and other private information with exactly one person.

This CLI takes any data from STDIN, pushes it to the [readonce-server web service](https://github.com/freerobby/readonce-server), and returns a unique URL where the data can be queried exactly once.

As soon as the first request for a given key is received by the web service, its associated data are deleted.

## Installation

`gem install readonce` -- that's it!

## Usage

To share a line of text, such as a password, use:

`echo "foobar123" | readonce`

To share a file, such as a private key, use:

`readonce < mykey.pem`

You can check whether your readonce data has been accessed with:

`readonce -s <key>`

Or, you can have readonce block until it has been accessed, so you can see exactly when the recipient has viewed it:

`readonce -w < mykey.pem` or `readonce -w <key>`


## License

The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
readonce-1.0.12 README.md
readonce-1.0.11 README.md
readonce-1.0.10 README.md
readonce-1.0.9 README.md
readonce-1.0.8 README.md
readonce-1.0.7 README.md
readonce-1.0.6 README.md
readonce-1.0.5 README.md
readonce-1.0.4 README.md
readonce-1.0.3 README.md
readonce-1.0.2 README.md
readonce-1.0.1 README.md