Notes

ci crates.io

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 and installed with cargo. bash cargo install notes-rs

Building

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

Example Usage

```bash

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