Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marialuizaleitao/simple-cli-reminder
CLI reminder application written in Go that allows you to add and list reminders.
https://github.com/marialuizaleitao/simple-cli-reminder
cli-app golang
Last synced: about 2 months ago
JSON representation
CLI reminder application written in Go that allows you to add and list reminders.
- Host: GitHub
- URL: https://github.com/marialuizaleitao/simple-cli-reminder
- Owner: marialuizaleitao
- Created: 2024-06-29T18:07:38.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2024-06-29T19:05:17.000Z (6 months ago)
- Last Synced: 2024-07-12T05:03:48.873Z (6 months ago)
- Topics: cli-app, golang
- Language: Go
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple CLI Reminder
A simple CLI reminder application written in Go that allows you to add and list reminders.
## Features
- Add reminders with a message.
- List all reminders.## Installation
1. Clone the repository:
```bash
git clone
```2. Navigate to the project directory:
```bash
cd reminder
```3. Build the application:
```bash
go build -o reminder
```## Usage
### Add a Reminder
To add a reminder, use the following command:
```bash
./reminder add "Your reminder message"
```## List Reminders
To list all reminders, use the following command:```bash
./reminder list
```## Examples
Add a reminder with the message "Buy groceries":```bash
./reminder add "Buy groceries"
```## List all reminders:
```bash
./reminder list
```## Notes
Reminders are stored in a text file called reminders.txt in the same directory as the application.
Ensure you have write permissions to the directory where the application is located.