#!/bin/sh
#
#  jave.sh, a bash script by duus made on Fri Dec 28 02:10:48 EST 2007 
#  lives in: ~/Documents//Software/unixscripts//jave/jave.sh 
#  run binedit jave to edit.  see binedit help for more information
#
_SCRIPT_NAME=jave             
_SCRIPT_LOCATION=~/bin/             
#             
if [ "$1" = "version" ]                
	then                                 
	echo " jave (a simple commandline wrapper for JavE)"          
		exit 1;
	fi                        
# --- normal script here ---   
if [ ! -e "$*" ]
  then
	touch $*
fi
open -a "JavE 5.0.app" $*
# -------------------------- 
# 
# 

