/DWTC

DWTC(Daily work tracker cli) is a command line tool created with Golang for Windows/Linux/Mac to track your daily life works.

Primary LanguageGo

Daily Work Tracker

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.

demo

Prerequisites

  • Golang installed on your system.
  • The make utility.

Installation

  1. Fork and clone the repository:
git clone https://github.com/piyushyadav0191/Daily-Work-Tracker-CLIgit
cd daily-work-tracker
  1. Build the project:
make build

Usage

  • 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>

Example

./todo "Prepare presentation for meeting"
./todo "Review code changes"
./todo -list
./todo -complete=2
./todo -list

Contributing

Contributions are welcome! Feel free to open a pull request.