cal.pl - Print calendar of multiple type


NAME

cal.pl - Print calendar of multiple type


SYNOPSIS

cal.pl [-l locale -w weekstart [-c|-g|-j|-t calendar_type] month year]

    Options:
       -l, --locale locale
           The locale of system. Only for Non english calendar.
       -w, --weekstart start
           The week start day for the output. Default is 0, means the
           first day of the week is Sunday
       -c, --china
           Output chinese calendar
       -g, --gregorian
           Output gregorian calendar
       -j, --julian
           Output Julian calendar
       -t, --type calendar_type
           Specific a type of calendar.
           Available type: china, gregorian, julian
       month, year
           The month and year of the calendar


Example

    * Output current month gregorian calendar
       cal.pl
    * Output chinese calendar of February in current year

       cal.pl -c 2
    * Output the julian calendar in 1752 September. You can see the
      difference from cal(1)
       cal.pl -j 9 1752
    * Output chinese calendar in gbk language environment
       cal.pl -c -l gbk


AUTHOR

Ye Wenbin <wenbinye@gmail.com>


SEE ALSO

the Calendar manpage, the Calendar::Calendar manpage, the Calendar::Gregorian manpage, the Calendar::Julian manpage, the Calendar::China manpage

 cal.pl - Print calendar of multiple type