ICal2Rem: Difference between revisions

From Skoll.CA
Jump to navigation Jump to search
remind>Admin
(New page: :''Main article: Remind'' == Ical2Rem == A script to convert from the iCal / ICS format the format used by Remind. It converts the calendar entries as well as the To Do items. It...)
 
m (3 revisions imported)
 
(2 intermediate revisions by one other user not shown)
Line 24: Line 24:
=== Installation ===
=== Installation ===


Download the script from [http://jalcorn.net/public/ical2rem.pl The Author's Site] which should be placed
Download the script from [https://github.com/jbalcorn/ical2rem Github]; the script should be placed
in a "bin" directory in your executable path. <code>/usr/local/bin/</code> or <code>~/bin</code> are good
in a "bin" directory in your executable path. <code>/usr/local/bin/</code> or <code>~/bin</code> are good
candidates.  You may need to install some Perl modules first. Try <code>cpan -i iCal::Parser DateTime</code>
candidates.  You may need to install some Perl modules first. Try <code>cpan -i iCal::Parser DateTime</code>
as root. If that doesn't work, consult general documentation for installing Perl modules.  
as root. If that doesn't work, consult general documentation for installing Perl modules.


=== License ===
=== License ===


The code for ical2rem.pl has now been released under the GPL.
The code for ical2rem.pl has now been released under the MIT License.


=== Author ===
=== Author ===

Latest revision as of 09:19, 14 April 2021

Main article: Remind

Ical2Rem

A script to convert from the iCal / ICS format the format used by Remind. It converts the calendar entries as well as the To Do items. It uses the Due Date as the Remind date, or the current date if there's no Due date.

A Subversion repository will be available soon for "official" versions. Version 0.5.1, as of 2007-03-23, is available at the author's site.

Example uses:

cat /path/to/my/other_file.ics | ical2rem.pl >~/.ical2rem

Or process a remote file, such as one from Google calendar:

wget -q -O- http://path.com/to/my/google.ics | ical2rem.pl --label "Gcal" >~/.ical2rem

You may wish to make a cron entry to automate this:

0-59/15 * * * *  cat /path/to/my/other_file.ics | ical2rem.pl >~/.ical2rem

In the ~/.reminders file, include the new file:

INCLUDE ./.ical2rem

Installation

Download the script from Github; the script should be placed in a "bin" directory in your executable path. /usr/local/bin/ or ~/bin are good candidates. You may need to install some Perl modules first. Try cpan -i iCal::Parser DateTime as root. If that doesn't work, consult general documentation for installing Perl modules.

License

The code for ical2rem.pl has now been released under the MIT License.

Author

The code was originally created by Justin B. Alcorn, inspired by a message thread on the 43Folders board discussing conversion scripts written in Applescript. Please consider leaving a comment for the author

Code

The code is in active maintenance. Get it from The Author's Site