Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hibiken/t

CLI application to manage daily todos
https://github.com/hibiken/t

Last synced: 27 days ago
JSON representation

CLI application to manage daily todos

Awesome Lists containing this project

README

        

# t
a command-line tool to manage todos for a project.

## Install
```shell
go get -u github.com/hibiken/t

go install github.com/hibiken/t
```

## Get Started
```shell
# Add some todos
t add "First thing I need to do today"
t add "Second thing I need to do today"

# List todos
t list
t ls # alias of 'list'

# To see done todos, pass 'all' flag
t ls --all
t ls -a

# Mark todo as done
t done

# Mark todo as undone
t undone [id]

# Deletes todo
t delete [id]

# This deletes only done todos
t prune

# This deletes all todos
t clear

# Run help to get this info
t help
t --help
```