Forrest logo
back to context overview

cal

List of commands for cal:

  • cal:tldr:148e3 cal: Display a calendar for the current year.
    $ cal -y
    try on your machine
    explain this command
  • cal:tldr:1b038 cal: Display previous, current and next month.
    $ cal -3
    try on your machine
    explain this command
  • cal:tldr:48f93 cal: Display a calendar for a specific month (1-12 or name).
    $ cal -m ${month}
    try on your machine
    explain this command
  • cal:tldr:5762b cal: Use Monday as the first day of the week.
    $ cal --monday
    try on your machine
    explain this command
  • cal:tldr:912b4 cal: Display a calendar for the current month.
    $ cal
    try on your machine
    explain this command
  • cal:tldr:ca126 cal: Display date of Easter (Western Christian churches) in a given year.
    $ ncal -e ${year}
    try on your machine
    explain this command
  • cal:tldr:d2825 cal: Display a calendar for a specific month and year.
    $ cal ${month} ${year}
    try on your machine
    explain this command
  • cal:tldr:d339f cal: Display a calendar for a specific year (4 digits).
    $ cal ${year}
    try on your machine
    explain this command
back to context overview