Notes

ci

Notes is a simple command line notes application for storing quick, short notes.

Licensed under GPLv3.

Installation

From Binaries

There are binaries for Linux and macOS on the Releases page.

From Source

Notes can be built from source using the latest rust compiler on stable, beta, or nightly. Clone the repository and run $ cargo build --release

Example Usage

```

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 ```

Features