Skip to content

Ramkarthik/t

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

t

A very minimal, CLI based todo application

Why?

  • I wanted an easy way to manage my todo list using the CLI.
  • I wanted to use Rust.

How it works?

Usage: t <COMMAND>

Commands:
  a     Adds the todo item
  d     Marks the todo item as done
  help  Print this message or the help of the given subcommand(s)
  l     Marks the todo item as done
  r     Removes the todo item

1. Add an item

t a "update dependencies"

Usage: t a <ITEM>

Arguments:
  <ITEM>  Id of the todo item
  1. List items

t l

  1. Mark an item as done

t d 1 (this marks the first item in the todo as done)

Usage: t d <ID>

Arguments:
  <ID>  Id of the todo item
  1. Remove an item

t r t 1 (this removes the first item from the todo bucket)

t r d 1 (this removes the first item from the done bucket)

Usage: t r <BUCKET> <ID>

Arguments:
  <BUCKET>  Bucket to remove from (t for todo, d for done)
  <ID>      Id of the todo item

About

A very minimal, CLI based todo app

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages