Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'this works--->' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
this works--->
Authored by: halo7 on Oct 29, '03 04:26:39PM
I opened my .command file in bbedit. If you make this in pico and chmod 777 it'll run jbuilder 9. Thanks for all the help guys!!!!!! =) ---

#! /bin/bash
# JB9alt.command
# Credits:
# Original author -- Dave Yost
# Modifications -- Paul Furbacher
# Use at your own risk; make modifications according to
# your installation.

# Optional arguments in the last line of this script:
#
# -info  prints out info equivalent to that found in the About
#        box > Info tab.
#
# -verbose  prints out a verbose record of the OpenTool initializatin
#        and more
#
# -license  starts the License Manager
#
 
echo "Environment"
/usr/bin/env
echo ""

if [ $# -eq 0 ]
  then args="-info"
  else args=$@
fi

echo $args

JBUILDER_HOME=/Developer/Applications/JBuilder9
jdk=1.4.1

useGrowBox=true

cd $JBUILDER_HOME/JBuilder.framework/bin

#jars=`find ../patch ../lib ../lib/ext -name \*.jar | tr '\012' : `
jars=`find ../lib -name \*.jar | tr '\012' : `

exec /System/Library/Frameworks/JavaVM.framework/Versions/$jdk/Commands/java \
-Xdock:name="JBuilder 8_Ent":icon=$JBUILDER_HOME/JBuilder.app/Contents/\
Resources/JBuilder.icns \
-Xmaxf0.2 \
-Xminf0.2 \
-Dapple.laf.useScreenMenuBar=true \
-Dapple.awt.showGrowBox=$useGrowBox \
-Xverify:none \
-Xbootclasspath/p:../lib/lawt.jar:../lib/javac.jar:../lib/TabbedPaneFix.jar:../lib/\
SequencedEventFix.jar:../lib/JarManifestFix.jar:\
/System/Library/Java/Extensions/MRJToolkit.jar \
-Xms32m \
-Xmx256m \
-cp ${jars}:/System/Library/Java \
com.borland.jbuilder.JBuilder $args


[ Reply to This | # ]
this works--->
Authored by: Maxwell309 on Dec 12, '03 05:34:46PM

Thank you so much, your script works fantastic. I am going to give jbuilder a try. I have been using eclipse, but it just feels slow as a dog.



[ Reply to This | # ]