画面コマンドキー 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’. 

おすすめ記事