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.
23 lines
586 B
23 lines
586 B
#!/bin/bash |
|
|
|
#----------------------------- |
|
# Shell-Kommando "wget.x" |
|
#----------------------------- |
|
|
|
#------------------------------------------------------------------- |
|
#wget - Eine Java-Klasse, die eine binäre Exceldatei von einem Server herunterladen kann |
|
#wget.bat (für Windows) |
|
#wget.x (für Linux) |
|
|
|
#als Parameter gibt man an |
|
#wget.x URL Dateiname (*.xml) |
|
#------------------------------------------------------------------- |
|
if [ "$1" = "" ] |
|
then echo "Aufruf: wget.x URL Dateiname (*.xml)" |
|
echo " " |
|
echo " " |
|
exit 0 |
|
fi |
|
|
|
|
|
java -cp $JDBC_CLASSPATH de.superx.bin.Wget $1 $2
|
|
|