mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-20 21:18:32 +02:00
More changes to overview.md:
- fixed up the headings - added information about multi-platform support This is a work in progress and _not_ ready for prime-time. - need to add to Command-Line Interface section, among other things
This commit is contained in:
parent
ed7712a073
commit
05b507741b
1 changed files with 22 additions and 20 deletions
|
@ -3,39 +3,41 @@
|
|||
`jrnl` is a simple but powerful plain text journal application for the command
|
||||
line.
|
||||
|
||||
Your imagination may be limitless, but your memory probably isn't. `jrnl` lets
|
||||
you write something down, and then it gets out of the way.
|
||||
## Features
|
||||
|
||||
## how it works
|
||||
### Command-Line Interface
|
||||
|
||||
New entries are created on the command line:
|
||||
Everything happens on the command line.
|
||||
|
||||
``` sh
|
||||
jrnl today at 8am: I arrived at work to find a birthday present on my desk. My colleagues are the best!
|
||||
```
|
||||
|
||||
Support for external editors is included.
|
||||
|
||||
### one file type to rule them all...
|
||||
### Text-Based
|
||||
|
||||
`jrnl` stores your journals as human-readable, future-proof plain text files.
|
||||
You can store them wherever you want, including in shared folders to keep them
|
||||
synchronized between devices. And because journal files are stored as plain
|
||||
text, you can rest assured that your journals will be readable for centuries.
|
||||
|
||||
### ...and as many files as you need
|
||||
### Support for Multiple Journals
|
||||
|
||||
`jrnl` allows you to work with multiple journals, each of which is stored as a
|
||||
single file using date and time tags to identify individual entries. `jrnl`
|
||||
makes it easy to find the entries you want, and only the ones you want, so that
|
||||
you can read them or edit them. Here's an example: say you want to find all of
|
||||
the entries you wrote on January 3rd, 2020 that include the word _cat_, and
|
||||
change every instance of the word _cat_ to _dog_? Easy:
|
||||
you can read them or edit them.
|
||||
|
||||
``` sh
|
||||
jrnl -on 2020-01-03 -contains 'cat' --edit
|
||||
```
|
||||
### Support for External Editors
|
||||
|
||||
### for your eyes only
|
||||
`jrnl` allows you to search for specific entries and edit them in your favorite
|
||||
text editor.
|
||||
|
||||
### Encryption
|
||||
|
||||
To protect your journal, you can encrypt it using [256-bit AES encryption](http://en.wikipedia.org/wiki/Advanced_Encryption_Standard).
|
||||
`jrnl` includes support for [256-bit AES
|
||||
encryption](http://en.wikipedia.org/wiki/Advanced_Encryption_Standard) using
|
||||
[cryptography.io](https://cryptography.io).
|
||||
|
||||
### Multi-Platform Support
|
||||
|
||||
`jrnl` is compatible with most operating systems. Pre-compiled binaries are available through several distribution channels, and you can build from source. See the installation page for more information.
|
||||
|
||||
### Open-Source
|
||||
|
||||
`jrnl` is written in [Python](https://www.python.org) and maintained by a [friendly community](https://github.com/jrnl-org/jrnl) of open-source software enthusiasts.
|
Loading…
Add table
Reference in a new issue