Skip to content

buguno/todo-cli

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.