#!/bin/bash # Created By : mrkips (Cybergavin) # Created On : 31st March 2012 # Description : This script queries the mediawiki database and sends a notification regarding page creation. Reminds users about the existence of the wiki and what's in there. ##################################################################################### # # Variables # EMAIL_RECIPIENTS="wikiusers@abc.com" REPORT_DATE=$(date '+%Y%m%d' --date="yesterday") REPORT_DATE_FORMAIL=$(date '+%d-%b-%Y' --date="yesterday") WIKI_BASEURL="http://wiki.abc.com/wiki/index.php/" # # Functions # getDBdata() { mysql -u wiki -p'xxxxx' --skip-column-names wiki <