emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] converting many ics files to a single org file


From: Thomas Plass
Subject: Re: [O] converting many ics files to a single org file
Date: Mon, 10 Jun 2019 22:20:45 +0200

Hello,

Alan Schmitt wrote at 16:32 on June 10, 2019:
: I've found this tool
: https://github.com/asoroa/ical2org.py but it's not clear if it can
: handle many files.

As per its docstring it's one file per invocation.  But the docstring
also lists:

$ cat in.ical | ical2orgpy - - > out.org

I haven't tried, but something like this might work (on Unixoids):

$ echo -n > out.org
$ for i in *.ical; do cat $i | ical2orgpy - - >> out.org; echo >> out.org; done

Regards

Thomas



reply via email to

[Prev in Thread] Current Thread [Next in Thread]