sdep

A simple "date+event" line parser
git clone https://git.tronto.net/sdep
Download | Log | Files | Refs | README | LICENSE

commit a0c92ae6c9c996222b8d49f9d79bcf852ffbb0f8
parent 49514773570944453812a8255e31893627daf375
Author: Sebastiano Tronto <sebastiano.tronto@gmail.com>
Date:   Sat,  8 May 2021 19:55:53 +0200

Fix typos

Diffstat:
MREADME.md | 12++++++------
1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/README.md b/README.md @@ -11,11 +11,11 @@ system. ## Description sdep reads lines of the form `date text` from stdin and writes to stdout those -lines such that `date` is between the two dates specified by the `-f` and `-t` -options, both of which default to the current minute. +lines such that `date` is between the two dates specified with the `-f` and +`-t` options, both of which default to the current minute. -The dates should correspond to a unique minute in time. The format for `date` -can be specified with the same syntax as for date(1). +The format for `date` can be specified with the same syntax as for date(1). +The dates should correspond to a unique minute in time. ## Installation Edit the Makefile to match your local configuration and type `make install`. @@ -86,10 +86,10 @@ between multiple devices using something like ## Scripts The `scripts` folder contains the few scripts that I use. They are basically -just a slightly more elaborate version of the calendar system described above, +just a more elaborate version of the calendar system described above, with support for recurring events (e.g. weekly, daily). You can install them with `make scripts`, but first make sure to adjust them to match your local configuration, like the location of the events file. -Most of the script rely on the `-d` option of the GNU date utility, so you +Most of the scripts rely on the `-d` option of the GNU date utility, so you should change that too if you are on a BSD system or on MacOS.