#!/bin/bash
############################################################
######################### SECTION #1 #######################
###################### header section ######################
# this template script is the starting point for script files
# NOTE that the script is divided into 5 sections, which is
# the suggested format for all well-trained & groomed scripts
# see http://www.amazon.com/Linux-Shell-Scripting-Developers-Library/dp/0672326426/ref=sr_11_1?ie=UTF8&qid=1217087207&sr=11-1
# see also the advanced bash scripting guide at
# http://tldp.org/LDP/abs/html/
# for details
# @purpose of script: template file for scripts
# @version history:
# @to_do: 
#
shopt -s -o nounset	# unset variables not allowed




############################################################
######################### SECTION #2 #######################
########### global declarations - variables here ###########
declare -rx SCRIPT=${0##*/}	# name of this script
declare -rx AUTHOR="Bob Carnaghi" #place your name here
declare -rx VERSION="0.2" # don't forget to increment this
declare -rx CREATED="07-23-2008"
declare -rx NOW=`date`
declare -rx UPDATED="12-06-2008"



############################################################
######################### SECTION #3 #######################
########## sanity checks - checks & balances here ##########
# introduction
echo "" # replace these lines as necessary
echo "This " $SCRIPT " is a starting point"
echo "for clear, clean, sane scripting"
echo "by: " $AUTHOR " version: " $VERSION
echo " created on: " $CREATED " updated: " $UPDATED
echo ""




############################################################
######################### SECTION #4 #######################
########## main script - the heart of the matter  ##########




############################################################
######################### SECTION #5 #######################
########## cleanup - leave it better than it was ###########
exit 0 # all is well





############################################################
