From 8458d95e8f7da7c95d5895451b41122ac3c084e5 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Thu, 17 Feb 2022 08:33:16 -0800 Subject: [PATCH] doc tweaks --- README.md | 5 +++-- ncal.c | 5 ++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 6ab0ba6..7fef8da 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ -Forked from https://packages.ubuntu.com/focal/bsdmainutils +Fork of the unix `cal` command (from https://packages.ubuntu.com/focal/bsdmainutils) +that acts as an interactive date picker. -Build: +## Build ``` sudo apt build-dep bsdmainutils diff --git a/ncal.c b/ncal.c index 02cc185..d186d45 100644 --- a/ncal.c +++ b/ncal.c @@ -27,7 +27,6 @@ */ #include -__FBSDID("$FreeBSD: head/usr.bin/ncal/ncal.c 326276 2017-11-27 15:37:16Z pfg $"); #include "calendar.h" #include @@ -591,8 +590,8 @@ usage(void) { fputs( -"Usage: ncal [general options] [-bJjpwySM] [-H yyyy-mm-dd] [-s country_code] [[month] year]\n" -" ncal [general options] [-bJeoSM] [year]\n" +"Usage: calpick [general options] [-bJjpwySM] [-H yyyy-mm-dd] [-s country_code] [[month] year]\n" +" calpick [general options] [-bJeoSM] [year]\n" "General options: [-31] [-A months] [-B months] [-d yyyy-mm]\n", stderr); exit(EX_USAGE);