You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/bin/bash
-
- HOME=$(cd `dirname $0`;cd ../; pwd)
- UMP=$(ls $HOME/ext | grep ump-booter-)
- if [ ! -n "UMP" ]; then
- echo "Unified Management Platform Is Null !!!"
- else
- nohup java -jar -server -Djump.log=$HOME $HOME/ext/$UMP $* >$HOME/bin/jump.out 2>&1 &
- fi
|