8 lines
176 B
Plaintext
8 lines
176 B
Plaintext
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
if [ $# -eq 1 ]; then
|
||
|
|
icegridadmin -u aa -p aa -e "server disable $1;server stop $1;server enable $1;server start $1" 2>/dev/null
|
||
|
|
else
|
||
|
|
echo useage:appld [NAME]
|
||
|
|
fi
|