Merging multiple singular .ics files into one in Linux
Step 1: Gather your individual .ics files in a folder. Open the terminal in the said folder. Type this in your console. # Comhbine all .ics to a new text file cat *.ics > temp.txt Step 2: If you check with cat temp.txt you can see there is this weird string that you need to get rid off: END:VCALENDARBEGIN:VCALENDAR. Use cat temp.txt | grep -v DARBEG > temp1.txt Step 3: For my case, I also need to: ...