⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 argouml.sh

📁 使用java编写的开源UML产品
💻 SH
字号:
#!/bin/sh## Shell script to launch ArgoUML on Unix systems.  Mostly borrowed from# the Apache Ant project.## The idea is that you can put a softlink in your "bin" directory back# to this file in the ArgoUML install directory and this script will# use the link to find the jars that it needs, e.g.:## ln -s /usr/local/ArgoUML/argouml.sh /usr/local/bin/argo## 2002-02-25 toby@caboteria.org## resolve links - $0 may be a link to ArgoUML's homePRG=$0progname=`basename $0`while [ -h "$PRG" ] ; do  ls=`ls -ld "$PRG"`  link=`expr "$ls" : '.*-> \(.*\)$'`  if expr "$link" : '.*/.*' > /dev/null; then      PRG="$link"  else      PRG="`dirname $PRG`/$link"  fidonejava -jar `dirname $PRG`/argouml.jar "$@"

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -