# This is an example perl template for use with mkScript.pl.
#
# The line "ext:" is used to set the file extension.
# The line "comment:" is used to set the comment character.
ext: "pl"
comment: "# "
#!/usr/bin/env perl
<LICENSE>
# ----------------------------------------------------------------------------
#   <SCRIPT>
# 
#   Author:			<NAME>
# 					<EMAIL>
# 
#   Version:		0.01
#   Date:			<DATE>
# 
#   Description:	...
# 
#   Usage:			Type "<SCRIPT> -help" for more information.
# 
# ----------------------------------------------------------------------------

use strict;
use warnings;

#-------------------------------
# First the "use" commands
#-------------------------------
use Getopt::Long;

#-------------------------------
# The variables
#-------------------------------
our $opt_help;

#-------------------------------
# Get the options
#-------------------------------
GetOptions(
	'help'
	);

#-------------------------------
# Help
#-------------------------------
if (defined $opt_help)
{
	# print the following until we get an EOF
	print <<EOF;

    <PROC> Help

    FLAGS:
        -h(elp)         Display this help.


    EXAMPLES:
        <SCRIPT> -help
EOF
	exit;
}


#-------------------------------
# Verify Required Inputs
#
# Without these inputs, the script will error out
#-------------------------------


#-------------------------------
#-------------------------------
# Define subroutines
#-------------------------------
#-------------------------------


#-------------------------------
#-------------------------------
#
#  Main part of the script
#
#-------------------------------
#-------------------------------


