• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/sh
2#
3# Copyright (C) 2017 and later: Unicode, Inc. and others.
4# License & terms of use: http://www.unicode.org/copyright.html
5#
6# Copyright (c) 2008-2013 IBM Corp. and Others. All Rights Reserved
7if [ ! -x ${1} ];
8then
9	echo could not exec ${1}
10	echo usage: ${0} something.jvm.sh  blah
11	exit 1
12fi
13#JAVA_HOME=/somewhere/1_6
14JAVA=java
15#CLASSPATH=foo/bar.jar:/baz
16#VM_OPTS=-Xmx265
17
18. "${1}"
19
20
21set -x
22${JAVA_HOME}/bin/${JAVA} ${VM_OPTS} -classpath ${CLASSPATH}:${2} ${3}
23