今天剛好有兩個人都問了這個問題

「screen 可以回捲的行數不夠怎麼辦?」

所以就寫下來記錄一下
--其實是直接複製貼上-- …

今天剛好有兩個人都問了這個問題

「screen 可以回捲的行數不夠怎麼辦?」

所以就寫下來記錄一下
--其實是直接複製貼上--


第一種解法:跟 screen 無關

關於您的問題應該是不用升級版本就可以解決的
只要將您的指令 pipe 給 less

$ (Your command) | less  

或是使用 > 將程式的輸出結果導到某個檔案中

$ (Your command) > $file  

再使用 less 或是您慣用的編輯器開啟

less $file, vim $file, emacs $file, ...


第二種解法:從 screen 的設定下手

如果您想要從 screen 的方面下手的話
可以參考 http://www.gnu.org/software/screen/manual/screen.html

情況一:仍未開啟 screen

在開啟 screen 的時候 加上 -h $num

$num 代表可以往上捲幾行

screen 預設為 100

情況二:已經開啟 screen

如果已經開啟 screen 的話
可以在 screen 的 cli 環境中輸入

:defscrollback $num  

$num 一樣代表可以往上捲幾行

則新開啟的 screen 分頁會套用此設定


Share


Donation

如果覺得這篇文章對你有幫助, 除了留言讓我知道外, 或許也可以考慮請我喝杯咖啡, 不論金額多寡我都會非常感激且能鼓勵我繼續寫出對你有幫助的文章。

If this blog post happens to be helpful to you, besides of leaving a reply, you may consider buy me a cup of coffee to support me. It would help me write more articles helpful to you in the future and I would really appreciate it.


Related Posts