Hey folks,
So, I've been placed in charge of building a spreadsheet at work. There's really no timeline on it, and they're liberal with how long it takes me to do it, but I have NO IDEA where to even start. It requires parsing raw data to build a spreadsheet, and I'd need to do some mathematics in order to do so. Unfortunately, I am probably the worst mathematician on the planet.
I basically have a list, like the below, except it's a couple hundred lines longer:
Cronjob | # of Servers | Every minute | Every hour | Every day | Every week | Every month
-----------------------------------------------------------------------------------------
CronHere| 187 | N | N | Y | Y | Y
What I need to do is export it to CSV (the easy part) and then try to figure out how to parse it either with a perl script, or just some fancy awk scripting (both of which I'm useless with) in order to build a human readable chart of cron jobs.
This is pretty much over my head, so if anyone has any experience doing something similar I'd appreciate the help.