Skip to content

Latest commit

 

History

History
47 lines (29 loc) · 795 Bytes

README.md

File metadata and controls

47 lines (29 loc) · 795 Bytes

To Do CLI

This is a simple todo CLI, this code is based in Golang Tutorial: Build A Beautiful CLI Todo App With Support for Piping

todo

Requisites

First of all, download and install Go. 1.20 or higher is required.

Building and Running

First you need to build the project.

make build

After build, you have the project binaries and you can run the todo app with the commands:

Add a task

./todo -add <your_task_name>

List all tasks

./todo -list

Complete a task

./todo -complete=<index>

Delete a task

./todo -del=<index>

License

Licensed under the MIT License. See LICENSE for more details.