A simple bash script to remind something by stipulated time.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
# Remind
|
|
|
|
|
|
|
|
A simple bash script to remind something by stipulated time.
|
|
|
|
|
|
|
|
## Install
|
|
|
|
|
|
|
|
```bash
|
|
|
|
sh <(curl -s https://git.lucasf.dev/public/remind/raw/branch/master/install.sh)
|
|
|
|
```
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
Example of usage:
|
|
|
|
> The time can be (s|m|h)
|
|
|
|
|
|
|
|
```bash
|
|
|
|
remind do something cool
|
|
|
|
> Time to delay: 15m
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
To cancel some reminder:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
remind cancel
|
|
|
|
> [1] do something cool
|
|
|
|
> [2] do another one
|
|
|
|
> Please choose a number to cancel [1-2]:
|
|
|
|
```
|