c.l.i.g.o is a command-line interface (CLI) application built in Go (Golang) to manage task lists. With c.l.i.g.o, you can easily add, delete, list, and complete tasks directly from your terminal.
- Add Task: Add a new task to your task list.
- Delete Task: Remove an existing task from your task list.
- List Tasks: Display all tasks in your task list.
- Complete Task: Mark a task as complete.
To install c.l.i.g.o, you need to have Go installed on your machine. If you don't have Go installed, you can download it from here.
-
Clone the repository:
git clone https://github.com/FilledEther20/c.l.i.g.o.git
-
Navigate to the project directory:
cd c.l.i.g.o
-
Build the application:
go build -o c.l.i.g.o
To add a task, use the add
command followed by the task description:
go run main.go -add your_task
To delete a task, use the -delete flag followed by the task ID:
go run main.go -delete=1
To list all tasks, use the -list flag:
go run main.go -list
To mark a task as complete, use the -complete flag followed by the task ID:
go run main.go -complete=1
This project is licensed under the MIT License - see the LICENSE file for details.