add a README - ics2txt - convert icalendar .ics file to plain text | |
git clone git://bitreich.org/ics2txt git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws… | |
Log | |
Files | |
Refs | |
Tags | |
README | |
--- | |
commit 8db0276d909098a19c3e5c468ea24f773b81d6b4 | |
parent c2ed3821e4f01043c1e8b3c9572c36ee6ff49af3 | |
Author: Josuah Demangeon <[email protected]> | |
Date: Thu, 19 Apr 2018 03:45:08 +0200 | |
add a README | |
Diffstat: | |
M Makefile | 3 +++ | |
A README | 35 +++++++++++++++++++++++++++++… | |
2 files changed, 38 insertions(+), 0 deletions(-) | |
--- | |
diff --git a/Makefile b/Makefile | |
@@ -3,6 +3,9 @@ MAN1 = agenda.1 | |
all: | |
+README: $(MAN1) | |
+ mandoc -T utf8 $(MAN1) | col -bx >$@ | |
+ | |
install: | |
mkdir -p $(PREFIX)/bin | |
cp $(BIN) $(PREFIX)/bin | |
diff --git a/README b/README | |
@@ -0,0 +1,35 @@ | |
+AGENDA(1) General Commands Manual AGENDA(1) | |
+ | |
+NAME | |
+ agenda plain text agenda with ical support | |
+ | |
+SYNOPSIS | |
+ agenda txt [+- offset [ics file...]] | |
+ agenda tsv [+- offset [ics file...]] | |
+ | |
+DESCRIPTION | |
+ agenda displays iCalendar (ical, .ics) files created by. | |
+ | |
+ agenda txt [+- offset [ics file...]] | |
+ Display the agenda(s) file as plain text sorted by date. | |
+ | |
+ agenda tsv [+- offset [ics file...]] | |
+ Display the agenda(s) file as a tab-separated values (tsv) one | |
+ entry per line, with the following fields in order: | |
+ DTSTART begin date as an UNIX timestamp | |
+ DTEND end date as an UNIX timestamp | |
+ CATEGORY category | |
+ SUMMARY symmary | |
+ LOCATION location | |
+ DESCRIPTION description | |
+ | |
+ENVIRONMENT | |
+ TZ Timezone to use for printing the dates. | |
+ | |
+SEE ALSO | |
+ calendar(1), date(1), | |
+ | |
+AUTHORS | |
+ Josuah Demangeon <[email protected]> | |
+ | |
+OpenBSD 6.3 February 23, 2018 OpenBSD 6.3 |