initial commit (uploading from fujitsu-server)

This commit is contained in:
2020-12-29 12:17:11 +01:00
commit e5853fab5a
4 changed files with 121 additions and 0 deletions

34
bukkit-status Executable file
View File

@@ -0,0 +1,34 @@
#!/bin/bash
# ×==================================×
# | bukkit-status by Elias Schriefer |
# ×==================================×
if [ "$1" = "-h" ]
then
echo "bukkit-status [option]"
echo
echo "Options:"
echo " -h Show help"
exit 0
fi
# Is there a window with name "bukkit" already running in screen?
# We don't need your fukcing text, ew...
sudo screen -ls bukkit > /dev/null
if [ $? -eq 0 ]
then
# If the screen window is indeed running, shout it in my
# face, I wanna know...
echo running
# Now gimme my suxesvul eksit koud...
true
else
# If the screen window is not running, shout that in my
# face, too, I wanna know...
echo stopped
# Gimme my unsuxesvul eksid koud...
false
fi
# and eksit wif that eksid koud
exit $?