You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
883 B
15 lines
883 B
#!/bin/bash |
|
|
|
|
|
if [ "$1" = "" ] |
|
then M_ID=$MANDANTENID |
|
else |
|
M_ID=$1 |
|
fi |
|
|
|
cp $SUPERX_DIR/webserver/tomcat/webapps/superx/applet/superx.jar "$SUPERX_DIR/webserver/tomcat/webapps/superx/$M_ID/applet" >>$UPDATELOG 2>&1 |
|
cp $SUPERX_DIR/webserver/tomcat/webapps/superx/applet/*.jsp "$SUPERX_DIR/webserver/tomcat/webapps/superx/$M_ID/applet" >>$UPDATELOG 2>&1 |
|
cp $SUPERX_DIR/webserver/tomcat/webapps/superx/xml/*.xsl "$SUPERX_DIR/webserver/tomcat/webapps/superx/$M_ID/xml" >>$UPDATELOG 2>&1 |
|
cp $SUPERX_DIR/webserver/tomcat/webapps/superx/xml/*.css "$SUPERX_DIR/webserver/tomcat/webapps/superx/$M_ID/xml" >>$UPDATELOG 2>&1 |
|
cp -r $SUPERX_DIR/webserver/tomcat/webapps/superx/xml/dynapi "$SUPERX_DIR/webserver/tomcat/webapps/superx/$M_ID/xml" >>$UPDATELOG 2>&1 |
|
cp $SUPERX_DIR/webserver/tomcat/webapps/superx/style/*.* "$SUPERX_DIR/webserver/tomcat/webapps/superx/$M_ID/style" >>$UPDATELOG 2>&1
|
|
|