From 5e53346fabfcd4052968b5322a38ac94d2f35360 Mon Sep 17 00:00:00 2001 From: Matthew Crumley Date: Fri, 16 Oct 2020 21:27:07 -0400 Subject: [PATCH] calendar: add page --- pages/common/calendar.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 pages/common/calendar.md diff --git a/pages/common/calendar.md b/pages/common/calendar.md new file mode 100644 index 0000000000..581d535a66 --- /dev/null +++ b/pages/common/calendar.md @@ -0,0 +1,32 @@ +# calendar + +> Display upcoming events from a calendar file. +> Basic event format: "(month)/(day) (Description)" (tab-separated). + +- Show events for today and tomorrow (or the weekend on Friday) from the default calendar: + +`calendar` + +- Look [A]head, showing events for the next 7 days: + +`calendar -A 7` + +- Look [B]ack, showing events for the previous 7 days: + +`calendar -B 7` + +- Show events from a custom calendar file: + +`calendar -f {{/path/to/calendar_file}}` + +- Example entry for Christmas: + +`12/25 Christmas` + +- Example entry for US Thanksgiving (4th Thursday of November): + +`11/ThuFourth Thanksgiving` + +- Example entry for US Memorial Day (last Monday of May): + +`May MonLast Memorial Day`