12 lines
351 B
Bash
Executable file
12 lines
351 B
Bash
Executable file
#!/usr/bin/env bash
|
|
if ( gprep -f ModernUO.dll > /dev/null)
|
|
then
|
|
echo "________________________________"
|
|
echo "| A Server is already running!! "
|
|
echo "--------------------------------"
|
|
else
|
|
echo "________________________________"
|
|
echo "| Starting Server...."
|
|
echo "--------------------------------"
|
|
dotnet ./Distribution/ModernUO.dll
|
|
fi
|