-
-
Notifications
You must be signed in to change notification settings - Fork 2
Linux cal Guide
Mattscreative edited this page Dec 5, 2025
·
2 revisions
Complete beginner-friendly guide to cal on Linux, covering Arch Linux, CachyOS, and other distributions including calendar display, date viewing, and calendar navigation.
Basic usage:
# Show current month
cal
# Displays current month calendarMonth and year:
# Specific month
cal 12 2024
# Shows December 2024Three month view:
# Three months
cal -3
# Shows previous, current, next monthWeek starts Monday:
# Monday first
cal -m
# -m = Monday (week starts Monday)Full year:
# Full year
cal 2024
# Shows entire yearJulian dates:
# Julian calendar
cal -j
# -j = Julian (shows day of year)Year view:
# All 12 months
cal -y
# -y = year (shows all months)This year:
# Current year
cal -y
# Shows all months of current yearCheck installation:
# cal is part of util-linux
# Usually pre-installed
# Check cal
which calThis guide covered cal usage, calendar display, and date viewing for Arch Linux, CachyOS, and other distributions.
- date Guide - Date and time commands
- timedatectl Guide - Time management
-
cal Documentation:
man cal
This guide covers Arch Linux, CachyOS, and other Linux distributions. For distribution-specific details, refer to your distribution's documentation.