Crates.io | notes-rs |
lib.rs | notes-rs |
version | 0.2.2 |
source | src |
created_at | 2020-08-11 13:24:52.940206 |
updated_at | 2020-08-11 13:53:54.126471 |
description | Notes is a simple command line notes application for storing quick, short notes. |
homepage | |
repository | https://github.com/alidiusk/notes-rs |
max_upload_size | |
id | 275356 |
size | 93,726 |
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
.
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.
$ git clone https://github.com/alidiusk/notes-rs
$ cd notes-rs
$ cargo build --release
$ ./target/release/notes --version
0.2.1
# prints all notes (without descriptions). there are no notes yet.
$ notes
# creates a new note with the given content, no tags, no description.
$ notes new "Learn to use notes-rs."
$ notes new "This note has tags and a description." --tags learning --desc "test note."
# get all notes and display their descriptions
$ notes get --desc
# get all notes with the `learning` tag
$ notes get --tags learning
# change the tag on note 1
$ notes edit 1 --tags "new-tag"
# delete note 0; there will be a confirmation prompt displaying its content.
$ notes delete 0
--path
option (default is XDG data directory).