Как проверить, запущен ли сеанс экрана?

Как проверить, запущен ли сеанс экрана?

Есть ли способ проверить, запущен ли сеанс screen в bash?
Например:

if [screen is running]
  then
    screen -r          #if session is running then resume the session
  else
    screen "command"   #else start a new session
fi

решение1

Воспользуйтесь переменной окружения PPID(Parent PID) и начните с

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

или,

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

Конечно, это не сработает, если вы создали, выполнили, сделали что-то не так и $PPIDне сделали свой экран недоступным.

Если это так, вы могли бы построить что-то с помощью pgrep, pstree, egrepчто могло бы следовать по $PPIDцепочке в обратном направлении (остановиться, когда $PPIDбудет 1).

решение2

Читая, man screenвы найдете 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".

Наверняка один из них сделает то, что вам нужно, и без этой переменной.

Связанный контент