Skip to content

Implementation of dead simple todo list manger in various languages -- CLI Mode -- Hell yeah!!!

Notifications You must be signed in to change notification settings

bhargavg/todocli

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

57 Commits
 
 
 
 
 
 

Repository files navigation

A todo list manager in different languages

Maintains the list of todo items in binary file.

Commands

$ # initalize todo
$ todo init # --dir=/parent/directory/of/todo.bin
$
$ # list all todo items
$ todo # this is same as `todo list`
$ todo list [--summary] [--completed] [--pending] 
$
$ # get help about command
$ todo add -h
$
$ # Add an item to the list
$ todo add "This is a dummy todo item"
$
$ # Tick the items with id 1 as done
$ todo tick 1
$
$ # Untick the items with id 1
$ todo untick 1
$
$ # Delete the item with id 1
$ todo rm 1 # [--all] [--pending] [--completed]

TODO

  • Document about the todo.bin file format
  • Languages
    • C
    • Swift

About

Implementation of dead simple todo list manger in various languages -- CLI Mode -- Hell yeah!!!

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published