From 833b8e5015be7fc10025a0815567d9eab8ed9713 Mon Sep 17 00:00:00 2001 From: Inigo Gutierrez Date: Thu, 7 Mar 2019 10:28:25 +0000 Subject: months.sh and years.sh now use cal, which is more common. --- years.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'years.sh') diff --git a/years.sh b/years.sh index 49494cb..a3f2f5e 100755 --- a/years.sh +++ b/years.sh @@ -1,14 +1,14 @@ -#!/bin/bash -# _ _ ___ __ _ _ __ ___ +#!/bin/sh +# _ _ ___ __ _ _ __ ___ # | | | |/ _ \/ _` | '__/ __| # | |_| | __/ (_| | | \__ \ # \__, |\___|\__,_|_| |___/ -# |___/ +# |___/ # # Navigates through year calendars and exits with q year=$(date +%Y) -ncal -b -y +cal -m -y read -n 1 input while [ "$input" != "q" ] @@ -22,7 +22,7 @@ do ;; esac clear - ncal -b -y $year + cal -m -y $year read -n 1 input done - + -- cgit v1.2.1