A simple CLI to-do application built in go.
An experimental exploratory project for me to get familiar with golang and building CLI apps
go install github.com/JammUtkarsh/grec@latest
Commands & flags
grec help
# For help
grec add -d "Let's Goooo"
# Only multi-word statements need "double quotes".
grec ls
# List all the entries.
grec paste
# outputs the last clip.
grec delete -d 4
# Delete a specific entry with its index.
grec clear
# Delete the whole list.
Clone the project
git clone https://github.com/JammUtkarsh/grec
cd grec
go build .