aboutsummaryrefslogtreecommitdiff
path: root/years.sh
diff options
context:
space:
mode:
Diffstat (limited to 'years.sh')
-rw-r--r--years.sh28
1 files changed, 28 insertions, 0 deletions
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
+