19 lines
717 B
Bash
19 lines
717 B
Bash
if [ "$1" = "quartzPro5" ]; then
|
|
echo "quartzPro5 publish......"
|
|
sh /usr/local/apache-tomcat-7.0.64/tomcat-instance/quartzPro5/startup.sh
|
|
elif [ "$1" = "ifish6" ]; then
|
|
echo "ifish6 publish......"
|
|
sh /usr/local/apache-tomcat-7.0.64/tomcat-instance/ifish6/startup.sh
|
|
elif [ "$1" = "ifish7" ]; then
|
|
echo "ifish7 publish......"
|
|
sh /usr/local/apache-tomcat-7.0.64/tomcat-instance/ifish7/startup.sh
|
|
elif [ "$1" = "ifishSystem8" ]; then
|
|
echo "ifishSystem8 publish......"
|
|
sh /usr/local/apache-tomcat-7.0.64/tomcat-instance/ifishSystem8/startup.sh
|
|
elif [ "$1" = "ifishSocket9" ]; then
|
|
echo "ifishSocket9 publish......"
|
|
sh /usr/local/apache-tomcat-7.0.64/tomcat-instance/ifishSocket9/startup.sh
|
|
else
|
|
echo "parameter error"
|
|
fi
|