The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

mergecal - Merge multiple iCal files into one

SYNOPSIS

mergecal [config.json]

DESCRIPTION

mergecal is a simple script to merge multiple iCal files into one.

COMMAND LINE OPTIONS

mergecal takes one optional argument, which is the path to a JSON file. If not provided, it will look for a file named config.json in the current directory.

The JSON file should have the following structure:

{
  "output": "output.ics",
  "input": [
    "input1.ics",
    "input2.ics",
    ...
  ]
}

The value for "output" is optional. If it is omitted, then the output is written to STDOUT.

AUTHOR

Dave Cross <dave@perlhacks.com>

COPYRIGHT AND LICENCE

Copyright (c) 2024, Magnum Solutions Ltd. All Rights Reserved.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.