Working with calendars in the shell
Tutorial – Shell Calendars
Command-line aficionados do not have to forgo calendars and appointment reminders. The shell offers many tools for user-friendly handling of date definitions in scripts.
Working with dates in the shell often causes problems. Aside from the usual typos, this is usually due to mismatched language and country settings. In practice, you will especially be confronted with this when working with databases.
Manual input can be relatively easily checked for formal correctness. The simplest aspect to change is the separators or the order of day, month, and year. An example of this is shown in Listing 1, and the corresponding output is shown in Figure 1. The short script supports both correct input with the dot as a separator and input with the comma in the numeric keypad for quick data entry.
Listing 1
Formatting the Date
#!/bin/bash # Comma as field separator # Output in format YYYY-MM-DD # Input read -p "Enter date: " input # Replace comma with dot for uniformity input=$(echo $input | tr \, \. ) # Output to variable with Awk, minus sign as separator output=$(echo $input | awk -F \. '{ print $3 "-" $2 "-" $1 } ') echo "Date converted: $output"

dialog and YAD
If you attach importance to user-friendliness as well as correct date values, why not use the attractive (semi-)graphical input options offered by dialog
or YAD?
With dialog
[3], simple date input takes the basic form of:
dialog --calendar 0 0
The two zeros automatically set the size to match the terminal. In the calling shell script, dialog
's various exit codes can be used for control, as shown in Listing 2. In the resulting mask (Figure 2), you can use the tab and arrow keys to navigate and press the Enter key to complete the entry.
Listing 2
A dialog Query
#!/bin/bash date=$(dialog --stdout \ --title "Calendar" \ --calendar "Select date" 0 0) if [ $? -eq 0 ]; then datum=$(echo $date | tr \/ \.) echo "Input date: $date" elif [ $? -eq 1 ]; then echo "Input canceled" fi
YAD [4] lets you output a shell script's user dialog in the GUI. Because of the very extensive options, you might want to read the YAD's documentation or at least excerpts of it. The input is conveniently mouse controlled. In the example shown in Listing 3, I replaced the standard buttons with my own, resulting in different exit codes (i.e., 2
for input). You can see the output of the script in Figure 3.
Listing 3
A YAD Query
#!/bin/bash date=$(yad --title=Calendar \ --text="Select date" \ --calendar --show-weeks \ --button="Cancel":1 \ --button="Intput":2) if [ $? -eq 2 ]; then date=$(echo $date | tr \/ \.) echo "Input date: $date" elif [ $? -eq 1 ]; then echo "Cancel entry" fi
smenu
Display redirection via SSH does not work everywhere. In addition, displaying dialog
masks can cause problems with some terminal settings. However, there is another method you can use if it is important to avoid incorrect entries (such as April 31). You specify the possible values with smenu [5].
For the calendar year, the user can select the current, previous, and next year in Listing 4 (line 7). The selection for the day works in the same way (line 17). To save space in the terminal display, smenu's -n1
option is used to limit the selection to one line. You can use the arrow keys to select the day. A cal
command (line 16) determines beforehand which specifications are permissible for it. The script extracts additional specifications such as the month, year, and weekday from this. To make the date suitable for further processing, single-digit day specifications are given a leading zero (lines 19 to 20). (Figure 4 shows the script output from Listing 4.)
Listing 4
Querying a Date with smenu
01 #!/bin/bash 02 # Year: current, last, next 03 ayear=$(date +%Y) 04 vyear=$(echo $ayear -1 | bc) 05 fyear=$(echo $ayear + 1 | bc) 06 # Use Smenu to select months 07 year=$(echo $vyear $ayear $fyear | smenu -m "Select calendar year") 08 echo "" 09 echo "------------------------" 10 echo "" 11 monat=$(echo 01 02 03 04 05 06 07 08 09 10 11 12 | smenu -m "Select month" ) 12 echo "------------------------" 13 # Create header for selection 14 menuhead=$(cal $month $year | head -1) 15 # Calendar field 16 calendar=$(cal $month $year | tail -6 | tr -d [:alpha:]) 17 day=$(echo $calendar | smenu -m "Use arrow keys to select day" -t1 -n1 ) 18 # Prepend zero to single-figure days 19 if [ $(echo $day | wc -L) -eq 1 ]; then 20 day=$(echo "0$day") 21 fi 22 date=$(echo $day.$month.$year) 23 echo $date
Shell Calendars
To display a calendar, you can use cal
or the spruced-up, newer ncal
variant, which the popular distributions already preinstall. The options for both programs can be found in Table 1. Called with the -C
parameter, ncal
behaves exactly like cal
. Figure 5 shows the two resulting calendars, which display three months along with the week numbers.
Table 1
cal and ncal Options
Option |
ncal |
cal |
Do not highlight today |
|
– |
Month (current year) |
|
– |
Month (any year) |
|
|
Annual calendar for year |
|
|
Calendar this year |
|
|
Three-month calendar |
|
|
Last month |
|
– |
Next month |
|
– |
Number weeks |
|
|
Display weeks horizontally |
|
– |
Display weeks vertically |
– |
|
1 |
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Direct Download
Read full article as PDF:
Price $2.95
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Find SysAdmin Jobs
News
-
LibreOffice 7.5 has Arrived and is Loaded with New Features and Improvements
The favorite office suite of the Linux community has a new release that includes some visual refreshing and new features across all modules.
-
The Next Major Release of Elementary OS Has Arrived
It's been over a year since the developers of elementary OS released version 6.1 (Jólnir) but they've finally made their latest release (Horus) available with a renewed focus on the user.
-
KDE Plasma 5.27 Beta Is Ready for Testing
The latest beta iteration of the KDE Plasma desktop is now available and includes some important additions and fixes.
-
Netrunner OS 23 Is Now Available
The latest version of this Linux distribution is now based on Debian Bullseye and is ready for installation and finally hits the KDE 5.20 branch of the desktop.
-
New Linux Distribution Built for Gamers
With a Gnome desktop that offers different layouts and a custom kernel, PikaOS is a great option for gamers of all types.
-
System76 Beefs Up Popular Pangolin Laptop
The darling of open-source-powered laptops and desktops will soon drop a new AMD Ryzen 7-powered version of their popular Pangolin laptop.
-
Nobara Project Is a Modified Version of Fedora with User-Friendly Fixes
If you're looking for a version of Fedora that includes third-party and proprietary packages, look no further than the Nobara Project.
-
Gnome 44 Now Has a Release Date
Gnome 44 will be officially released on March 22, 2023.
-
Nitrux 2.6 Available with Kernel 6.1 and a Major Change
The developers of Nitrux have officially released version 2.6 of their Linux distribution with plenty of new features to excite users.
-
Vanilla OS Initial Release Is Now Available
A stock GNOME experience with on-demand immutability finally sees its first production release.