Notes is a simple command line notes application for storing quick, short notes.
Licensed under GPLv3.
There are binaries for Linux and macOS on the Releases page.
Notes
can be built from source and installed with cargo
.
bash
cargo install notes-rs
Notes
can be built from source on the stable
, beta
, and nightly
compilers. You must have a rust compiler and cargo
installed.
bash
$ git clone https://github.com/alidiusk/notes-rs
$ cd notes-rs
$ cargo build --release
$ ./target/release/notes --version
0.2.1
```bash
$ notes
$ notes new "Learn to use notes-rs."
$ notes new "This note has tags and a description." --tags learning --desc "test note."
$ notes get --desc
learning
tag$ notes get --tags learning
$ notes edit 1 --tags "new-tag"
$ notes delete 0 ```
--path
option (default is XDG data directory).