2017-01-23 15:54:15 +00:00
|
|
|
# Pensieve
|
|
|
|
This is a diary script.
|
|
|
|
|
|
|
|
You can add or read a diary, or you can view it's stats.
|
|
|
|
|
2017-01-24 13:57:08 +00:00
|
|
|
Oh, and it's prodected with a symetric encryption from GPG (should be AES-128 or something similar strong).
|
2017-01-23 15:54:15 +00:00
|
|
|
|
2017-01-24 14:33:49 +00:00
|
|
|
## Setup
|
|
|
|
|
|
|
|
Just execute `./dependencies.sh` to check for required programms.
|
|
|
|
|
2017-01-23 15:54:15 +00:00
|
|
|
## Usage
|
|
|
|
|
|
|
|
```
|
|
|
|
./pensieve [OPTIONS] MODE [FILE]
|
|
|
|
|
|
|
|
OPTIONS:
|
|
|
|
-p use pager (only in read-mode)
|
|
|
|
-q quiet (no output except the content)
|
|
|
|
-j DATE jump to DATE (implies -p)
|
|
|
|
DATE YYYY.MM.DD
|
|
|
|
|
|
|
|
MODE: {test|stat|read|add}
|
|
|
|
test check password
|
|
|
|
stat print size, number of entries, ...
|
|
|
|
read read diary
|
|
|
|
add add entry
|
|
|
|
|
|
|
|
FILE: the diary file
|
|
|
|
```
|