32 lines
1.1 KiB
Markdown
32 lines
1.1 KiB
Markdown
Simple Note System
|
|
==================
|
|
|
|
The Simple Note System is a shell script partially inspired by [pass], in that
|
|
it stores notes as normal, plaintext, files in normal folders. It uses the
|
|
environment-specified editor, and can be configured to use GPG encryption.
|
|
|
|
SNS was originally conceived one morning during an update to a popular note-taking
|
|
app. The thought occurred that a note system need not reinvent the wheel with
|
|
its own GUI editor and proprietary file format, but instead could use the tools
|
|
already provided by the operating system.
|
|
|
|
As it developed, OpenSSL encryption was dropped in favor of GPG, and the script
|
|
was almost entirely rewritten as SNSv2.
|
|
|
|
simple note system
|
|
==================
|
|
|
|
usage: sns [-cedp] NAME NOTEBOOK SECTION
|
|
sns [-l] NOTEBOOK
|
|
sns [-hi]
|
|
-c | --create : Create note
|
|
-d | --delete : Delete note
|
|
-e | --edit : Open note for editing
|
|
-h | --help : Display this message
|
|
-p | --print : Print note to console
|
|
-l | --list : List all notes in NOTEBOOK
|
|
-i | --init : Write default config and initalize SNS store"
|
|
|
|
|
|
[pass]: http://passwordstore.org
|