Como verificar se a sessão de tela está sendo executada?

0

Existe alguma maneira de verificar se uma sessão de tela está sendo executada no bash?
Por exemplo:

if [screen is running]
  then
    screen -r          #if session is running then resume the session
  else
    screen "command"   #else start a new session
fi
    
por Hazzdood 10.09.2016 / 05:50

2 respostas

3

Ao ler man screen você encontra o COMMAND LINE OPTIONS :

COMMAND-LINE OPTIONS
       Screen has the following command-line options:

    ...snip...

       -d -r   Reattach a session and if necessary detach it first.

       -d -R   Reattach a session and if necessary detach or even create it first.

       -d -RR  Reattach a session and if necessary detach or create it. Use the first session if more than one session is available.

       -D -r   Reattach a session. If necessary detach and logout remotely first.

       -D -R   Attach  here  and now. In detail this means: If a session is running, then reattach. If necessary detach and logout remotely first.  If it was not running create it and notify
               the user. This is the author's favorite.

       -D -RR  Attach here and now. Whatever that means, just do it.

            Note: It is always a good idea to check the status of your sessions by means of "screen -list".

Certamente, um deles faria o que você quiser sem a variável.

    
por waltinator 11.09.2016 / 05:33
1

Aproveite a variável de ambiente PPID (Parent PID ) e comece com

$ ps -fp$PPID
UID        PID  PPID  C STIME TTY          TIME CMD
w3       19305 19304  0 00:00 ?        00:00:00 SCREEN
+w3@aardvark:~(0)$ 

ou

ps -fp$PPID | head -n 2 | tail -n 1 | egrep -q SCREEN
screen_is_running=$((1 - ${PIPESTATUS[-1]}))
# screen_is_running == 1 for yes, 0 for No, -1 for egrep error

Claro, isso não funcionará se você gerou, foi executado, não fez nada ou algo assim, e fez com que seu $PPID não fosse SCREEN.

Se for esse o caso, você poderia criar algo com pgrep , pstree , egrep que poderia seguir a corrente $PPID de volta (parar quando $PPID for 1).

    
por waltinator 10.09.2016 / 06:18