#!/bin/csh 
if ("$#argv" != "1") then
	echo "Usage: `basename $0` <image>"
	echo "(requires java 1.5)"
	exit
endif
set ij_path=/usr2/ImageJ
set java_path="${ij_path}/jre/bin/java"

# $1 contains the first argument passed to this script

${java_path} -Dplugins.dir=${ij_path} -cp ${ij_path}/ij.jar:${ij_path}/lib/xinapse.jar:${ij_path}/plugins/Input-Output/UNC_.jar UNC_Header $1
