https://github.com/ericthomasca/td
https://github.com/ericthomasca/td
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/ericthomasca/td
- Owner: ericthomasca
- License: mit
- Created: 2023-11-24T01:37:58.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-24T03:04:40.000Z (over 2 years ago)
- Last Synced: 2025-01-26T05:12:28.373Z (over 1 year ago)
- Language: Go
- Size: 20.5 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# td - Command Line Todo Manager
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.
## Installation
Install td using `go install`:
```bash
go install github.com/yourusername/td@latest
```
## Usage
Commands:
- `td add` or `td a` - Add a new task to your todo list.
- `td list` or `td l` - List all tasks in your todo list.
- `td update` or `td u` - Update a task in your todo list.
- `td delete` or `td 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 list` or `./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 1` or `./td r 1`
## Contributing
Contributions are welcome! Feel free to submit issues and pull requests.
## License
This project is licensed under the MIT License.