====================== Command line interface ====================== This chapter describes how to use the command line interface (CLI) for icalendar. The CLI consists of the ``icalendar`` command followed by arguments. Help ==== To get information about all the commands, use the ``-h`` option. .. code-block:: shell icalendar -h Read calendar from file ======================= To view a readable summary of an event file that is in iCalendar format, pass the path of the iCalendar file to icalendar. .. code-block:: shell icalendar myfile.ics The following is example output. .. code-block:: text Organiser: Secretary Attendees: John Doe Randy Summary: Yearly evaluation. When: Tue 14 Mar 2017 11:00-12:00 Location: Randy's office Comment: Reminder. Description: Your yearly evaluation is scheduled for next Tuesday. Please be on time. Read calendar from URL ====================== Download the :file:`.ics` file first, then pass it to icalendar. .. code-block:: shell curl -fsSL "https://www.gov.uk/bank-holidays/england-and-wales.ics" -o cal.ics icalendar cal.ics Shell-based mail client ======================= To use icalendar in terminal-based mail clients such as mutt, add a new MIME type as the root user as shown. .. code-block:: shell cat << EOF > /usr/lib/mime/packages/icalendar text/calendar; icalendar '%s'; copiousoutput; description=iCalendar text; priority=2 EOF update-mime