13 lines
123 B
Bash
13 lines
123 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
sleep 5
|
||
|
|
||
|
if [[ "$1" = "shell" ]]; then
|
||
|
exec /bin/bash
|
||
|
fi
|
||
|
|
||
|
cd /home/short-server
|
||
|
python3 server.py
|
||
|
|