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