lib/Tools/changeparent
author wenzelm
Mon, 02 Dec 1996 18:19:28 +0100
changeset 2295 bae5683c2891
child 2310 f49958ca2f8d
permissions -rwxr-xr-x
changeparent: change parent of Poly/ML database.

#!/bin/bash
#
# DESCRIPTION: change parent of Poly/ML database
#

PRG=$(basename $0)

function usage()
{
  echo
  echo "Usage: $PRG DB PARENT"
  echo
  echo "  Change parent of Poly/ML database DB to PARENT (full path name!)."
  echo
  exit 1
}

function fail()
{
  echo "$1"
  exit 2
}


## main

[ $# -ne 2 ] && usage

DB="$1"
PARENT="$2"

case "$ML_SYSTEM" in
  polyml-*)
    [ ! -w "$DB" ] && fail "Database not writable: $DB"
    $POLYML_HOME/changeParent "$DB" "$PARENT"
    ;;
  *)
    fail "You're not set up for Poly/ML!"
    ;;
esac