11 lines
183 B
Bash
Executable File
11 lines
183 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Read Settings
|
|
DIR=`dirname $0`
|
|
source $DIR/settings.cfg
|
|
|
|
echo Press STRG+A then D to detach from Console
|
|
read -p "Press [Enter] to continue..."
|
|
|
|
screen -R $screen_name
|