558Tivoli Business Systems Manager Version 2.1: End-to-End Business Impact Management
The gemmfprod.sh script
# TBSM 2.1 project - ITSO Austin
# Redbook SG24-6610
# Author: Budi Darmawan
# Copied from gemgenprod.sh program in TBSM 2.1 distribution
#
function usage {
ASIShellMsg ASIBldScripts 22 "$1" >&2
}
server=""
userid=""
password=""
manufacturer=""
product=""
version=""
while getopts xS:U:P:m:p:v: o
do
# print "processing: '-$o $OPTARG'"
if [ $o = S ]
then
server=$OPTARG
elif [ $o = U ]
then
userid=$OPTARG
elif [ $o = P ]
then
password=$OPTARG
elif [ $o = m ]
then
manufacturer="$OPTARG"
elif [ $o = p ]
then
product="$OPTARG"
elif [ $o = v ]
then
version="$OPTARG"
if [ "X$version" != X ]
then
typeset -R1 version_c
version_c="$version"
if [ "X$versio ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month, and much more.