#!/bin/sh

#
#
# Copyright 1997 Sun Microsystems, Inc. All Rights Reserved
#
# "@(#)config.sh	3.2 99/03/22 Sun Microsystems"
#

PATH=$PATH:/bin

if [ ! -d /etc/opt/SUNWicg/SunScreen/.active ]; then
	echo "Configuration directory not found"
	exit
fi

cd /etc/opt/SUNWicg/SunScreen/.active

if [ -f state_engines.h ]; then
	echo "state_engines.h"
	cat state_engines.h
	echo " "
fi

if [ -f Input.nat ]; then
	echo "Input.nat"
	cat Input.nat
	echo " "
fi

if [ -f Output.nat ]; then
	echo "Output.nat"
	od -x Output.nat
	echo " "
fi


if [ -f SKIP_V1_TABLE ]; then
	echo "SKIP_V1_TABLE"
	cat SKIP_V1_TABLE
	echo " "
fi

if [ -f active ]; then
    echo "active"
    cat active
    echo " "
fi

for file in `ls *.mac` ; do
  echo $file
  od -x $file
  echo " " 
done

for file in `ls *.data` ; do
  echo $file
  cat $file
  echo " " 
done

for file in `ls *.data.defs` ; do
  echo $file
  cat $file
  echo " " 
done

for file in `ls *.pfl` ; do
  echo $file
  cat $file
  echo " " 
done

for file in `ls *.aout` ; do
  echo $file
  od -x $file
  echo " " 
done















