화면 명령 키 Ctrl+r?

화면 명령 키 Ctrl+r?

다음은 명령의 예입니다.

 screen -S dua -X stuff $'commandhere'

많은 리소스를 검색했지만 여전히 Ctrlkeypress+ 명령을 찾지 못했습니다 R.

답변1

bash셸 에서 Ctrl+는 R내장 명령을 호출합니다 reverse-search-history (C-r). 이 man 1 bash섹션은 다음에서 찾을 수 있습니다.bash(1): GNU Bourne-Again SHell - 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.

호출할 수 있는 유일한 다른 명령은 screen개행에 대한 특정 명령이지만 일반적으로 Ctrl+ 처럼 호출 됩니다 a Ctrl r. 설명의 출처 man screen또는 출처화면 매뉴얼.

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’. 

관련 정보