The JavaHelp system is an online help system that developers can use to add online help to their Java platform applications. The JavaHelp system is both a JCP specification (JSR 97) and a reference implementation of that specification. The JavaHelp system open source project includes the source to the reference implementation. From Bryan Everly (bryan AT bceassociates DOT com). okay ajacoutot@
10 lines
177 B
Bash
10 lines
177 B
Bash
#!/bin/sh
|
|
|
|
JAVACMD=$(javaPathHelper -c javahelp)
|
|
|
|
if [ -z "${JAVACMD}" ]; then
|
|
exit 1
|
|
fi
|
|
|
|
exec ${JAVACMD} -jar ${TRUEPREFIX}/share/java/classes/javahelp/bin/jhsearch.jar "$@"
|