home *** CD-ROM | disk | FTP | other *** search
/ Kompuutteri Kaikille K-CD 2002 #1 / K-CD_2002-01.iso / DALiworld / data1.cab / Miscellaneous / prefs < prev    next >
Text File  |  2001-08-06  |  470b  |  15 lines

  1. #!/bin/sh
  2.  
  3. # Prefs Script - this script launches the Preferences application, which
  4. # can be used to edit the user preferences. By default, the preferences are
  5. # saved as myprefs.dat.
  6. #
  7. # Author: Todd Papaioannou
  8. # Date  : Jan 2001
  9. #
  10. # Note: The script assumes that you already have the java executable in
  11. # your PATH.
  12.  
  13. java -classpath $CLASSPATH:libs/IDebug.jar:libs/SunDevTools.jar:jars/DALiWorld.jar:./source soba.gui.PreferencesController myprefs.dat
  14.  
  15.