https://github.com/hibiken/t
CLI application to manage daily todos
https://github.com/hibiken/t
Last synced: 8 months ago
JSON representation
CLI application to manage daily todos
- Host: GitHub
- URL: https://github.com/hibiken/t
- Owner: hibiken
- Created: 2019-03-24T19:27:50.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-10T13:45:49.000Z (over 6 years ago)
- Last Synced: 2025-03-12T23:28:24.421Z (8 months ago)
- Language: Go
- Homepage:
- Size: 171 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```