Skip to content

Latest commit

 

History

History
58 lines (40 loc) · 652 Bytes

File metadata and controls

58 lines (40 loc) · 652 Bytes

Note CLI

Note CLI is a small program intended for taking note in command line.

Usage

  1. Build the project.
  2. Run the program in your terminal.

Commands

  • Help
~/note_cli help

Note CLI - Take a short note in command line.
Usage:
    list        List of notes
    create      Create new note
    read        Read note
    delete      Delete note
    help        Show this text
  • Create
~/note_cli create

Title: test
Content:
wow
  • List
~/note_cli list

List of notes:
1: test
  • Read
~/note_cli read <index>

test's contents:
wow
  • Delete
~/note_cli delete <index>