A simple Task App utilizing CLI, C++ and JSON.

If you use SSH Git (recommended), then:

bash

git clone git@github.com:khraosgenetor/taskapp-cli.git
cd ProgrammingNotes
./main.exe

Otherwise, use HTTPS:

bash

git clone https://github.com/khraosgenetor/taskapp-cli.git
cd ProgrammingNotes
./main.exe

Advanced:

bash

# View all tasks
./main.exe view

# View only done tasks
./main.exe view done

# Add a new task
./main.exe add

# Delete a task with ID 3
./main.exe delete 3

# Modify a task with ID 2
./main.exe modify 2