This makes them work from the build area, but they will not track development changes unless the jar is rebuilt. git-svn-id: https://svn.verisignlabs.com/jdnssec/tools/trunk@75 4cbd57fe-54e5-0310-bd9a-f30fe5ea5e6e
		
			
				
	
	
		
			15 lines
		
	
	
		
			292 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			292 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #! /bin/sh
 | |
| 
 | |
| thisdir=`dirname $0`
 | |
| basedir=`cd $thisdir/..; pwd`
 | |
| 
 | |
| ulimit -n `ulimit -H -n`
 | |
| 
 | |
| # set the classpath
 | |
| for i in $basedir/lib/*.jar $basedir/lib/*.zip $basedir/build/lib/*.jar; do
 | |
|   CLASSPATH="$CLASSPATH":"$i"
 | |
| done
 | |
| export CLASSPATH
 | |
| 
 | |
| exec java com.verisignlabs.dnssec.cl.ZoneFormat "$@"
 |