#!/bin/sh
 
while [ $# -gt 0 ] ; do
  case $1 in
    --projectroot) PROJECTROOT=$2; shift 2;;
         --pgroot) PGROOT=$2; shift 2;;
        --project) PROJECT=$2; shift 2;;
               * )  shift 1;;
  esac
done

