home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.5 Applications 2001 May / SGI IRIX 6.5 Applications 2001 May.iso / dev / java_dev.idb / usr / java / bin / sgi / native_threads / serialver.z / serialver
Encoding:
Text File  |  2000-05-20  |  409 b   |  20 lines

  1. #!/bin/sh -p
  2.  
  3. #
  4. # Check for properties
  5. #
  6. if [ ! -r "$JAVA_HOME/lib/serialver.properties" ] ; then
  7.     echo "Could not read properties file: $JAVA_HOME/lib/serialver.properties" 1>&2 
  8.     exit 1
  9. fi
  10.  
  11. #
  12. # source a script that extracts RUNTIME_ARGS and APP_ARGS
  13. #
  14. . `dirname $0`/.extract_args
  15.  
  16. #
  17. # Run the serial version UID utility
  18. #
  19. `dirname $0`/java -ms8m $RUNTIME_ARGS sun.tools.serialver.SerialVer $APP_ARGS
  20.