5 lines
96 B
Bash
5 lines
96 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
nohup python3 /server.py > /var/log/server.log 2>&1 &
|
||
|
|
||
|
while true; do /bin/bash; done
|