blob: ad3d81ee6e25fcef8596ee061b604db3dcf7a57d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#!/bin/bash
# _ _
# _ __ ___ ___ _ __ | |_| |__ ___
# | '_ ` _ \ / _ \| '_ \| __| '_ \/ __|
# | | | | | | (_) | | | | |_| | | \__ \
# |_| |_| |_|\___/|_| |_|\__|_| |_|___/
#
# Navigates through month calendars and exits with q
month=$(date +%m)
year=$(date +%Y)
cal -m "$month" "$year"
read -rn 1 input
while [ "$input" != "q" ]
do
case $input in
l)
clear
month=$((month%12+1))
if [ "$month" -eq 1 ]
then
year=$((year+1))
fi
;;
h)
clear
month=$(($((month-1))%12))
if [ "$month" -eq 0 ]
then
month=12
year=$((year-1))
fi
;;
esac
clear
cal -m "$month" "$year"
read -rn 1 input
done
|