You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
shooflenet/start_in_screen.sh

12 lines
280 B

#!/bin/bash
name_of_screen="auriga"
if screen -S $name_of_screen -X select .; then
echo "a screen session was found"
else
echo "a screen session was not found; making one now"
screen -Udm -S $name_of_screen
fi
screen -S $name_of_screen -X stuff $'./gunicorn_server_start\n'