#!/bin/sh

if [ $# -lt 1 ]
then
   echo "Usage: putintodb input_file"
   exit
fi
where=`which $0`
echo "LOC=$where"
dir=`dirname $where`
echo "DIR=$dir"
echo "*****Nodes to DB*****"
$dir/nodes $1
echo "*****Elements to DB*****"
$dir/elms $1
echo "*****Sets to DB*****"
$dir/sets $1
echo "*****Other entities to DB*****"
$dir/lsdtodb $1
