#!/bin/bash -i

  case "$1" in
     etc)
        cd /etc/
        pwd
        exit 0
        ;;
     web)
        cd /var/web/
        pwd
        exit 0
        ;;
     --help|-h|/?)
        echo "This will jump you to an area on D\$M"
        echo "Command line switches are as follows..."
        echo "  --list (or no arguments) to see what areas you can go to."
        exit 0;
      ;;
     -list|--list|*)
        echo "Current areas are..."
        echo ""
        echo "* Games - Global gaming area on D\$M where members can set up Web Based Games."
        echo "----"
        exit 0;
      ;;
  esac    
		       
