Como abrir janelas de abas no Gnu-screen e executar comandos dentro de cada um

26

quando inicia a sessão com o nome de qualquer nome como este screen -S name1

Eu quero abrir janelas abas nesta sessão de tela como quando abas abertas no gnome-terminal como este

gnome-terminal --tab -e "some commands"

então como fazer isso?

    
por Ahmed Zain El Dein 05.05.2013 / 21:05

1 resposta

62

1. Guias na tela

Você está procurando isso para adicionar ao seu arquivo .screenrc:

screen -t tab1
screen -t tab2

Aqui está um nice .screenrc básico para você começar com uma barra de status, etc. NOTA: Geralmente, ele está localizado em seu diretório pessoal /home/<username>/.screenrc .

screen -t validate #rtorrent
screen -t compile #irssi
screen -t bash3
screen -t bash4
screen -t bash5
altscreen on
term screen-256color
bind ',' prev
bind '.' next
#
#change the hardstatus settings to give an window list at the bottom of the
#screen, with the time and date and with the current window highlighted
hardstatus alwayslastline
#hardstatus string '%{= kG}%-Lw%{= kW}%50> %n%f* %t%{= kG}%+Lw%< %{= kG}%-=%c:%s%{-}'
hardstatus string '%{= kG}[ %{G}%H %{g}][%= %{= kw}%?%-Lw%?%{r}(%{W}%n*%f%t%?(%u)%?%{r})%{w}%?%+Lw%?%?%= %{g}][%{B} %m-%d %{W}%c %{g}]'

captura de tela

2.Guiasnatela(comcomandosdentro)

Oexemplo.screenrcabaixocriará2guiaseexecutará3comandosdeecoemcada.

screen-ttab1select0stuff"echo 'tab1 cmd1'; echo 'tab1 cmd2'; echo 'tab1 cmd3'^M"                                     
screen -t tab2                                                                                     
select 1                                                                                           
stuff "echo 'tab2 cmd1'; echo 'tab2 cmd2'; echo 'tab2 cmd3'^M"                                     

altscreen on                                                                                       
term screen-256color                                                                               
bind ',' prev                                                                                      
bind '.' next                                                                                      
#                                                                                                  
#change the hardstatus settings to give an window list at the bottom of the                        
#screen, with the time and date and with the current window highlighted                            
hardstatus alwayslastline                                                                          
#hardstatus string '%{= kG}%-Lw%{= kW}%50> %n%f* %t%{= kG}%+Lw%< %{= kG}%-=%c:%s%{-}'              
hardstatus string '%{= kG}[ %{G}%H %{g}][%= %{= kw}%?%-Lw%?%{r}(%{W}%n*%f%t%?(%u)%?%{r})%{w}%?%+Lw%?%?%= %{g}][%{B} %m-%d %{W}%c %{g}]'

Essa técnica faz uso dos comandos select e stuff da tela para selecionar inicialmente uma das guias e, em seguida, "inserir" uma string nela.

captura de tela

3.Criando#2semusarumarquivo.screenrc

Sevocêestáprocurandoocenárioemquevocêpode:

  1. crieumasessãodetela
  2. carreguecomguias
  3. tenhacadaguiaexecutandoseuspróprioscomandos
  4. nãorequerumarquivo.screenrc

Entãoesteéoúnicoparavocê!Estejapreparadoembora.Estepodeficarumpoucocomplicadocomaslinhasdecomando.

Paracomeçar,vamoscriarumasessãodetela:

$screen-AdmSmyshell-ttab0bash

Oscomutadores-AdmSfazemoseguinte:

(Vejaa página man da tela para mais detalhes)

-A

    Adapt the sizes of all windows to the size of the  current terminal. 
    By default, screen tries to restore its old window sizes when
    attaching to resizable terminals

-d -m

    Start screen in "detached" mode. This creates a new session but
    doesn't attach to it. This is useful for system startup scripts.

-S sessionname

    When creating a new session, this option can be used to specify a
    meaningful name for the session. This name identifies the session for
    "screen -list" and "screen -r" actions. It substitutes the default
    [tty.host] suffix.

Agora vamos começar a carregá-lo com guias + seus comandos:

$ screen -S myshell -X screen -t tab1 vim
$ screen -S myshell -X screen -t tab2 ping www.google.com
$ screen -S myshell -X screen -t tab3 bash

Estes 3 comandos irão criar 3 abas adicionais e executar vim, ping google e iniciar um shell bash. Se listarmos as sessões de tela, veremos o seguinte:

$ screen -ls
There is a screen on:
        26642.myshell   (Detached)
1 Socket in /var/run/screen/S-root.

Se nos conectarmos à sessão de tela, myshell e listarmos as guias que ela contém, veremos o seguinte:

$ screen -r myshell

Pressione esta combinação de teclas: Ctrl + A seguido por Shift + "

Num Name                                                                   Flags

  0 tab0                                                                       $
  1 tab1                                                                       $
  2 tab2                                                                       $
  3 tab3                                                                       $

Mudando para tab2 :

64 bytes from ord08s08-in-f20.1e100.net (74.125.225.116): icmp_seq=443 ttl=55 time=41.4 ms
64 bytes from ord08s08-in-f20.1e100.net (74.125.225.116): icmp_seq=444 ttl=55 time=33.0 ms
64 bytes from ord08s08-in-f20.1e100.net (74.125.225.116): icmp_seq=445 ttl=55 time=30.1 ms

captura de tela

OscomandosacimasãoamaneirabásicaderealizaroqueoOPestavaprocurando.Isso,éclaro,podesercondensadoerefinadousandoaliasesdeBashouscriptsdeshell,issoéapenasparademonstraracapacidadeemostrarocaminho!

Referências

  • Página de manual da tela
por 05.05.2013 / 21:42

Tags