<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Wed, Oct 29, 2014 at 8:40 AM, Dave Cramer <span dir="ltr"><<a href="mailto:davecramer@gmail.com" target="_blank">davecramer@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div dir="ltr">Is there anything out there that is written simply ? By this I mean I don't want to have to install a framework or a jvm or any large dependencies. Ideally this would be written in bash or the like.<div><br></div><div>The goal is to monitor cron jobs using something other than mail. </div></div></blockquote><div> </div><div>Is the DB requirement necessary?  I think Mauro's suggestion is fine if you don't need to put it into a DB as you can just have all the output redirected into a logging file.</div></div><br></div><div class="gmail_extra">Just to improve on his suggestion though:</div><div class="gmail_extra"><br></div>0 5 * * 1 tar -zcf /var/backups/home.tgz /home/ >> /tmp/backup.log 2>&1<br><div><br></div><div>That last little bit says to redirect the STDERR to STDOUT so you'll also get error messages logged.  Otherwise you'll also get an email if there's anything on the STDERR.</div><div><br></div><div>-Tim</div></div>