9 lines
139 B
Bash
Executable File
9 lines
139 B
Bash
Executable File
#!/bin/bash
|
|
|
|
screen -x start-menu
|
|
if (($?)); then
|
|
screen -A -m -d -S start-menu /opt/banc/start-menu.sh
|
|
sleep 1
|
|
screen -x start-menu
|
|
fi
|