up vote 3 down vote favorite
2

I have many ICS files which I want to import into my google calendar. Importing them one at a time, just isn't practical. Are there any alternatives?

flag

migrated from stackoverflow.com

3 Answers

up vote 3 down vote

You can just concatenate them into one big file.

In windows, copy all of your *.ics in on folder, then fire up cmd.exe and do:

copy mycal.ics + anothercal.ics + extracal.ics all.ics

If you are a linux user you can use:

cat mycal.ics onothercal.ics extracal.ics > all.ics

Then import all.ics into google calendar.

link|flag
up vote 0 down vote

Under DOS/Windows CMD, instead of typing out all the filenames, you can also just use

copy *.ics all.ics

with the same result.

Which means you can also just toss that one line into something like combine_ics.bat and run that every time you need to do such a thing.

link|flag
up vote 0 down vote

how can I do this on a mac please? I am not used to using instructions like these

link|flag
You can use the same command as for Linux in @Ludwig's answer if you run from Terminal.app. – Joe Shaw Apr 2 at 21:18

Your Answer

get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.