#! /bin/bash
#
# The System Manager
# An Administration Tool For UNIX
#
# Copyright (c) 1994 Stuart Herbert
# Released under the GNU GPL v2
#
# Bugs/comments/contributions to S.Herbert@Sheffield.ac.uk

function main()
{
}

# main code
if [ -n "$1" ]; then
  case "$1" in
    --SysmanInstall)
      echo "YN : YN : NAME : DESCRIPTION :$0"
      exit
      ;;
    --SysmanAuthor)
      echo "$0: DESCRIPTION"
      echo "Copyright (c) Spods Anonymous"
      exit
      ;;
    --SysmanManifest)
      echo "Destination Dir : Permissions"
      exit
      ;;
    *)
      echo "Your parameter handing HERE"
  esac
else
  main
fi

# clean up here
for x in $SysmanFile1 $SysmanFile2 $SysmanFile3 ; do
  if [ -f $x ]; then rm -f $x ; fi
done

# that's it, folks
