Command-Line-Interface
GNU Screen 中的 hardstatus 和 caption 有什麼區別?
我已經開始使用 GNU Screen 設置。
GNU Screen 中的 hardstatus 和 caption 有什麼區別?
hardstatus
似乎出現在終端的底部,但我什至不知道到底caption
是什麼。
hstatus string
對我來說,在 Windows 中使用 PuTTY, hardstatus顯示在 Windows 視窗screen
標題caption splitonly string
中screen
(caption always string
.您可以在 中找到更多文件
info screen
。
位置,顯示這兩種狀態的位置取決於您的配置。但它們的邏輯含義如下:
hardstatus
:此行用於狀態消息screen
- 例如,提醒您活動或其他類似消息。caption
:此行通常僅在打開多個視窗時才會顯示,並允許您查看它們的詳細資訊(例如目前活動的視窗)。如果您在以下配置中像這樣配置它們,您將在螢幕的最後兩行看到狀態
~/.screenrc
:caption string ... hardstatus alwayslastline ...
您可以閱讀有關GNU Screen 視覺功能介紹的更多詳細資訊。