¿Cómo persisten las sesiones del terminal OS X a través de los reinicios?

12

Al ser un ávido usuario de Linux antes de comprar una MacBook Pro, normalmente tengo varias pestañas de terminal abiertas al mismo tiempo.

En el pasado, los bloqueos y reinicios generalmente destrozaban mi flujo de trabajo y la mayoría de mis respectivos historiales de pestañas. Busqué formas de resolver este problema, pero siempre aparecían vacías; además de varias técnicas que utilizaban combinaciones de herramientas como ssh , screen , tmux y requerían un servidor privado virtual (o similar).

Una de mis cosas favoritas sobre el uso de mi MacBook Pro para escribir scripts y el uso de herramientas CLI, etc .; Es que mis sesiones de terminal persisten más allá de los bloqueos y reinicios por defecto. De hecho, acabo de restaurar una copia de seguridad de hace casi 2 años, y cuando inicié sesión por primera vez, me presentaron mi escritorio antiguo y tres bash shells que comprendían un proyecto en el que estaba trabajando todo ese tiempo. .

Me gustaría saber cómo OS X hace posible esta característica. ¿Alguien aquí tiene una idea de cómo funciona?

    
pregunta tjt263 02.04.2017 - 06:02

2 respuestas

10

El código para restaurar la Terminal (en realidad, las sesiones bash ) es parte de /etc/bashrc_Apple_Terminal que se obtiene a través de /etc/profile y /etc/bashrc para cada sesión bash que se ejecuta en la Terminal.

# Resume Support: Save/Restore Shell State
#
# Terminal assigns each terminal session a unique identifier and
# communicates it via the TERM_SESSION_ID environment variable so that
# programs running in a terminal can save/restore application-specific
# state when quitting and restarting Terminal with Resume enabled.
#
# The following code defines a shell save/restore mechanism. Users can
# add custom state by defining a shell_session_save_user_state function
# that writes restoration commands to the session file at exit. e.g.,
# to save a variable:
#
#   shell_session_save_user_state() { echo MY_VAR="'$MY_VAR'" >> "$SHELL_SESSION_FILE"; }
#
# During shell startup the session file is executed. Old files are
# periodically deleted.
#
# The default behavior arranges to save and restore the bash command
# history independently for each restored terminal session. It also
# merges commands into the global history for new sessions. Because
# of this it is recommended that you set HISTSIZE and HISTFILESIZE to
# larger values.
#
# You may disable this behavior and share a single history by setting
# SHELL_SESSION_HISTORY to 0. There are some common user customizations
# that arrange to share new commands among running shells by
# manipulating the history at each prompt, and they typically include
# 'shopt -s histappend'; therefore, if the histappend shell option is
# enabled, per-session history is disabled by default. You may
# explicitly enable it by setting SHELL_SESSION_HISTORY to 1.
#
# The implementation of per-session command histories in combination
# with a shared global command history is incompatible with the
# HISTTIMEFORMAT variable--the timestamps are applied inconsistently
# to different parts of the history; therefore, if HISTTIMEFORMAT is
# defined, per-session history is disabled by default.
#
# Note that this uses PROMPT_COMMAND to enable per-session history
# the first time for each new session. If you customize PROMPT_COMMAND
# be sure to include the previous value. e.g.,
#
#   PROMPT_COMMAND="${PROMPT_COMMAND:+$PROMPT_COMMAND; }your_code_here"
#
# Otherwise, the per-session history won't take effect until the first
# restore.
#
# The save/restore mechanism is disabled if the following file exists:
#
#   ~/.bash_sessions_disable
    
respondido por el nohillside 02.04.2017 - 12:06
5

Por lo que puedo decir, solo guarda el texto en el búfer de scrollback de cada ventana. En realidad, no guarda el estado de lo que se estaba ejecutando en los terminales; simplemente inicia un nuevo shell después del reinicio.

Como experimento, define una variable en tu shell y comprueba su valor:

foo=bar
echo $foo

Luego reinicie, y verifique nuevamente el valor de la variable. Verás que ya no está definido.

    
respondido por el Wyzard 02.04.2017 - 10:07

Lea otras preguntas en las etiquetas