lnxwizard / todo

A simple to-do application that runs on terminal.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

todo

A simple to-do list app that you can use from the terminal.

About

Usage

todo [command]

Examples

# Adding new to-do
todo add Take a walk
# Listing all to-do's
todo list
# Marking a to-do as completed
todo complete 2
# Marking a to-do as important
todo mark important 8
# Deleting a to-do
todo delete 5
# Unmarking a to-do as completed
todo unmark done 1
# Unmarking a to-do as important
todo unmark important 9

Available Commands

  • add: Add a new to-do.
  • complete: Mark a to-do as completed by index.
  • delete: Delete a to-do by index.
  • list: List all to-dos.
  • mark: Mark your to-do.
  • unmark: Unmark your to-do.

Available Flags

  • -h, --help: Print help message for todo.
  • -v, --version: Print version.

Documentation

Documentation about available commands, sub-commands, flags and more is in the /docs folder.

About

A simple to-do application that runs on terminal.

License:MIT License


Languages

Language:Go 100.0%