historian
v0.1.1
Published
command line pasteboard string storage
Readme
#historian
Historian is a simple command line utility for storing strings or blocks of UTF8 encoded text. Think of it as a semi-manually managed non-volatile multi-buffer pasteboard for your terminal.

Features
multiple pasteboard support
supports unix piping for adding text
output can be by line or in its entirety
aliases can be set for quick access when another pasteboard is active
Installation
Historian works best when installed as a global module:
npm -g install historianOn installation, Historian comes with one pasteboard titled
pasteboard.Historian currently relies on the default relative locations of the conf and var directories installed with the module. This will probably be changed in a future release to improve usability.
Usage
Historian's usage and arguments can be invoked by running:
hijs --usageTo list the current pasteboards available for use:
hijs -lTo create or use a pasteboard:
hijs -u [name]Newly created pasteboards are not created on disk until data is added. If you switch to another pasteboard, the current will be disregarded if it has no contents.
You can examine details about the active pasteboard by running:
hijs -eThis will return the name, total entries, and total characters.
Adding to a pasteboard is easy:
hijs -a stringYou can also use the output from something else:
echo 'I need to remember this!!' | hijsYou can output the whole pasteboard with:
hijs -por a specific line:
hijs -p 10You can also assign aliases to certain strings for easy access. These are stored independently of historian's other pasteboards:
hijs --alias alias_name striiiingYou paste aliases with:
hijs -p alias_name
Readme art by Bobby Fasel
