home *** CD-ROM | disk | FTP | other *** search
/ MacFormat UK 160 - Disc 2 / MF_UK_160_2.iso / pc / DiscContent / Trials / oxygen / diffFilesMac.sh < prev    next >
Encoding:
Linux/UNIX/POSIX Shell Script  |  2005-07-21  |  325 b   |  20 lines

  1. #!/bin/sh
  2. # Oxygen Startup script
  3. # (c) 2003 Syncro Soft Ltd.
  4. case "$0" in 
  5. /*)
  6.   p=$0
  7. ;;
  8. *) p=`/bin/pwd`/$0
  9. ;;
  10. esac
  11. p=`dirname '$p'`
  12. CP=$p/classes:$p:$p/lib/oxygen.jar
  13.  
  14. java -Xdock:name=DiffFiles\
  15.  -Dcom.oxygenxml.app.descriptor=ro.sync.diff.ui.DiffFilesMainFrameDescriptor\
  16.  -Xmx180m\
  17.  -cp $CP\
  18.  ro.sync.exml.Oxygen $1 $2
  19.  
  20.