Tecla de comando da tela Ctrl + r?

0

Este é o exemplo do comando:

 screen -S dua -X stuff $'commandhere'

Eu pesquisei muitos recursos, mas ainda não achei o comando para Ctrl + R .

    
por apasajja 04.09.2014 / 03:25

1 resposta

1

No shell bash , a Ctrl + R invoca o comando de compilação reverse-search-history (C-r) . Aqui está a seção do man 1 bash ou você pode encontrar em bash (1): GNU Bourne-Again SHell - Página man do Linux .

reverse-search-history (C-r)

    Search backward starting at the current line and moving 'up' through 
    the history as necessary. This is an incremental search.

O único outro comando que talvez seja invocado é um screen específico para quebra de linha, mas é normalmente chamado como Ctrl + a Ctrl r . A descrição é de man screen ou de Manual do usuário da tela .

Command: wrap state

    (C-a r, C-a C-r)
    Sets the line-wrap setting for the current window. When line-wrap is on,
    the second consecutive printable character output at the last column of a
    line will wrap to the start of the following line. As an added feature, 
    backspace (^H) will also wrap through the left margin to the previous 
    line. Default is ‘on’. 
    
por 07.09.2014 / 22:23

Tags