#!/bin/bash
#===============================================================================
#
#          FILE: check_gamerc_changes
#
#         USAGE: check_gamerc_changes
#
#   DESCRIPTION: Show you the different between the gamerc and last Ctrl update
#
#       OPTIONS:
#
#          BUGS:  ---
#        AUTHOR: rickz (Rick Zhang), xlrickz@gmail.com
#       COMPANY: X-LEGEND Entertainment Corp.
#       CREATED: Wed Dec  7 02:25:07 EST 2011
#      REVISION: 1.0
#
#          TODO:
#
#===============================================================================
#set -o nounset                              # Treat unset variables as an error
#set -m                                      # Enable job control

source ~/.gamerc

diff -p -u ~/.gamerc ~/.gamerc.new|highlight - "^-.*" "^+.*" "^@@.*"
