WindChat/restart.sh

36 lines
899 B
Bash
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/bash
PORT=$1
PORT2=$2
#### echo akaxin logo and desc
echo "
/ \
/ . \
\ . \
/ \ \ / _ _ __ _ __ __ ___ _ _
/ . \ | / / \ / \ | |/ / / \ \ \/ / |_ _| | \ | |
/ . _ \ / / . \ / _ \ | ' / / _ \ \ / | | | \| |
\ / / \ - . / / ___ \ | . \ / ___ \ / \ | | | |\ |
\ / / | \ / /_/ \_\ |_|\_\ /_/ \_\ /_/\_\ |___| |_| \_|
/ . \ \ /
\ . \
\ /
\ /
Akaxin is an open source and free proprietary IM softwareyou can build private openzaly-server for everyone in any server.
"
##set tcp port
if [ -n $PORT ]; then
PORT=2021
fi
##set http port
if [ -n $PORT2 ]; then
PORT2=8280
fi
sh stop.sh $PORT 1
sh start.sh $PORT $PORT2 1