× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



Maybe on a different track but I was browsing thru some IBM Omnifind shell scripts and ran across the following code:

#!/bin/sh
if [ -e "/QOpenSys/QIBM/ProdData/JavaVM/jdk60/32bit/bin/java" ]; then
export JAVA_HOME=/QOpenSys/QIBM/ProdData/JavaVM/jdk60/32bit
elif [ -e "/QOpenSys/QIBM/ProdData/JavaVM/jdk60/64bit/bin/java" ]; then
export JAVA_HOME=/QOpenSys/QIBM/ProdData/JavaVM/jdk60/64bit
elif [ -e "/QOpenSys/QIBM/ProdData/JavaVM/jdk50/32bit/bin/java" ]; then
export JAVA_HOME=/QOpenSys/QIBM/ProdData/JavaVM/jdk50/32bit
elif [ -e "/QOpenSys/QIBM/ProdData/JavaVM/jdk50/64bit/bin/java" ]; then
export JAVA_HOME=/QOpenSys/QIBM/ProdData/JavaVM/jdk50/64bit
else
echo "There is no supported JVM!"
exit
fi
(caution it looks like some worr wrap happened)
pasted here... http://code.midrange.com/c7781b0dd3.html

Looks like it tries specific JVMs and set the one it wants.

As an Amazon Associate we earn from qualifying purchases.

This thread ...

Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.