#!/bin/ksh93
# IBM_PROLOG_BEGIN_TAG 
# This is an automatically generated prolog. 
#  
# 61haes_r714 src/43haes/lib/ksh93/db2/KLIB_DB2_disc_get_instances.sh 1.3 
#  
# Licensed Materials - Property of IBM 
#  
# Restricted Materials of IBM 
#  
# COPYRIGHT International Business Machines Corp. 2005,2011 
# All Rights Reserved 
#  
# US Government Users Restricted Rights - Use, duplication or 
# disclosure restricted by GSA ADP Schedule Contract with IBM Corp. 
#  
# IBM_PROLOG_END_TAG 
# @(#)94	1.3 src/43haes/lib/ksh93/db2/KLIB_DB2_disc_get_instances.sh, hacmp, 61haes_r714 11/28/11 14:55:54
#
#=head1 NAME
#
# KLIB_DB2_disc_get_instances - Obtain a list of all of the instances discovered in db2.disc
#
#=head1 SYNOPSIS
#
# instances=$(KLIB_DB2_disc_get_instances)
#
#=head1 DESCRIPTION
#
# Obtain a list of all of the instances discovered in db2.disc
#
#=head1 ARGUMENTS
#
# 	None
#
#=head1 RETURN
#
# echo to stdout a list of discovered DB2 instances
#
#=head1 COPYRIGHT
#
#(C) COPYRIGHT International Business Machines Corp. 2005
#All Rights Reserved
#
#=cut
#
function KLIB_DB2_disc_get_instances
{
	echo $DB2_INSTANCES
}
