From 683564bd058884356491b7b847f5d2e204207389 Mon Sep 17 00:00:00 2001 From: InigoGutierrez Date: Mon, 19 Nov 2018 14:13:18 +0100 Subject: Initial scripts commit. --- years.sh | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 years.sh (limited to 'years.sh') diff --git a/years.sh b/years.sh new file mode 100644 index 0000000..49494cb --- /dev/null +++ b/years.sh @@ -0,0 +1,28 @@ +#!/bin/bash +# _ _ ___ __ _ _ __ ___ +# | | | |/ _ \/ _` | '__/ __| +# | |_| | __/ (_| | | \__ \ +# \__, |\___|\__,_|_| |___/ +# |___/ +# +# Navigates through year calendars and exits with q + +year=$(date +%Y) +ncal -b -y +read -n 1 input + +while [ "$input" != "q" ] +do + case $input in + l) + year=$(($year+1)) + ;; + h) + year=$(($year-1)) + ;; + esac + clear + ncal -b -y $year + read -n 1 input +done + -- cgit v1.2.1