https://github.com/garvittsingla/todo-cli-c
CLI based Todo made in C
https://github.com/garvittsingla/todo-cli-c
c clang cli clitodo clitool gcc todo
Last synced: 9 months ago
JSON representation
CLI based Todo made in C
- Host: GitHub
- URL: https://github.com/garvittsingla/todo-cli-c
- Owner: garvittsingla
- Created: 2025-05-13T16:11:46.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-13T17:31:19.000Z (about 1 year ago)
- Last Synced: 2025-09-12T00:48:50.680Z (10 months ago)
- Topics: c, clang, cli, clitodo, clitool, gcc, todo
- Language: C
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# C CLI Todo Application
A simple command-line todo list application written in C.
## Features
- Add tasks
- List tasks
- Mark tasks as complete
- Delete tasks
- Store tasks persistently
## Building the Application
Ensure you have GCC installed on your system.
```bash
gcc todo.c -o todo
```
## Usage
```bash
# Add a new task
./todo add "Complete homework"
# List all tasks
./todo list
# Mark task as complete (using task number)
./todo done 1
# Delete a task (using task number)
./todo delete 1
```
## Requirements
- GCC compiler
- Standard C libraries
## Contributing
Feel free to submit issues and pull requests.
## License
MIT License