https://github.com/kaczmarj/mycal
Modify mandatory Stony Brook Medical School events in iCalendar
https://github.com/kaczmarj/mycal
Last synced: 3 months ago
JSON representation
Modify mandatory Stony Brook Medical School events in iCalendar
- Host: GitHub
- URL: https://github.com/kaczmarj/mycal
- Owner: kaczmarj
- Created: 2020-03-17T03:29:19.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-03-31T22:58:11.000Z (about 5 years ago)
- Last Synced: 2025-02-10T02:33:31.455Z (4 months ago)
- Language: Go
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# mycal
This is a command-line program that modifies mandatory events in an iCalendar file. It is meant to be used __ONLY__ with Stony Brook University School of Medicine calendars.
It is also my way of practicing using Go, so the code might not be the shiniest.
See the Releases tab for a program compiled for your distribution.
## Examples
The following example adds the prefix "[MANDATORY] " to the title of every mandatory event.
```bash
./mycal -in calendar.ics -out modified.ics -pre "[MANDATORY] "
```The following example adds the prefix "[MANDATORY] " to the title of every mandatory event and adds a reminder 30 minutes before each mandatory event.
```bash
./mycal -in calendar.ics -out modified.ics -pre "[MANDATORY] " -remind -min 30
```