A command-line daily work tracker tool built using Golang. This tool helps you manage your daily tasks efficiently by allowing you to add, delete, list, and mark tasks as complete.
- Golang installed on your system.
- The
make
utility.
- Fork and clone the repository:
git clone https://github.com/piyushyadav0191/Daily-Work-Tracker-CLIgit
cd daily-work-tracker
- Build the project:
make build
- Add a new task:
./todo <write_your_work>
- Delete a task:
./todo -del=<ID_NUMBER>
- List all tasks:
./todo -list
- Mark a task as complete:
./todo -complete=<ID_NUMBER>
./todo "Prepare presentation for meeting"
./todo "Review code changes"
./todo -list
./todo -complete=2
./todo -list
Contributions are welcome! Feel free to open a pull request.