td is a simple command-line application built in Go using Cobra that allows you to manage your local todo list effortlessly. This project is a work in project so may not work as expected at present.
Install td using go install:
go install github.com/yourusername/td@latestCommands:
td addortd a- Add a new task to your todo list.td listortd l- List all tasks in your todo list.td updateortd u- Update a task in your todo list.td deleteortd r- Delete a task from your todo list.
Examples:
-
To add a task:
./td add "Buy groceries"or./td a "Buy groceries" -
To list all tasks:
./td listor./td l -
To update a task:
./td update 1 "Buy more milk"or./td u 1 "Buy more milk" -
To delete a task:
./td delete 1or./td r 1
Contributions are welcome! Feel free to submit issues and pull requests.
This project is licensed under the MIT License.