LinuxCommandLibrary

ical

Display and manipulate iCalendar data

TLDR

Display the current month's calendar

$ ical
copy

Convert a Gregorian date to a Hijri date
$ ical --gregorian [yyyymmdd]
copy

Convert a Hirji date to a Gregorian date
$ ical --hijri [yyyymmdd]
copy

SYNOPSIS

ical [options] [[month] year]

PARAMETERS

[month]
    The month to display (1-12).

[year]
    The year to display.

-3
    Display the previous, current and next month surrounding today’s month.

DESCRIPTION

The ical command is a simple utility for displaying a calendar on the terminal. It provides a text-based calendar output, typically for the current month. It supports displaying calendars for specific months and years, allowing you to view past or future dates. The output is generally basic, focusing on presenting the dates in a readable format. ical is often used for quick reference within a terminal session.
While functionally similar to the standard cal command, ical may offer slight variations in output formatting or options depending on the specific implementation and system. It's a convenient tool for users who prefer to work within the command line environment and need a readily accessible calendar. You can customize the output using parameters such as the year or month.

USAGE EXAMPLES

ical without arguments shows current month's calendar. ical 10 2024 shows the calendar for October 2024.

SEE ALSO

cal(1), date(1)

Copied to clipboard