home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
- # Oxygen Startup script
- # (c) 2003 Syncro Soft Ltd.
- case "$0" in
- /*)
- p=$0
- ;;
- *) p=`/bin/pwd`/$0
- ;;
- esac
- p=`dirname '$p'`
- CP=$p/classes:$p:$p/lib/oxygen.jar
-
- java -Xdock:name=DiffFiles\
- -Dcom.oxygenxml.app.descriptor=ro.sync.diff.ui.DiffFilesMainFrameDescriptor\
- -Xmx180m\
- -cp $CP\
- ro.sync.exml.Oxygen $1 $2
-
-