2014-10-10 80 views
3

我想知道是否有方法設置一個Linux或Mac終端,以便您始終在終端屏幕的頂部輸入命令,並且之前的命令在它下面。linux或mac終端命令可以向上滾動而不是向下滾動?

-----Screen top---- 
>EnterCommand 
>PreviousCommand 1 
>final line of Previous Command 1 output 
>second to final line of previous command 1 output 
-----Bottom of screen----- 

謝謝!

回答

0

這樣的功能沒有內置到standard *nix terminal driver;一個終端應用程序將不得不專門編寫來翻譯換行符和換行,而不是向下移動。請注意,這可能會破壞多個TUI應用程序,因此不建議將它們與這樣的終端應用程序一起使用。

0

這似乎相當接近到什麼你問:

https://github.com/swirepe/alwaysontop

要使用它,運行:

git clone https://github.com/swirepe/alwaysontop.git 
cd alwaysontop/ 
source alwaysontop.sh 

如果你決定你喜歡它只是源它在你的.bashrc或.bash_profile與類似的東西:

echo "source ~/alwaysontop/alwaysontop.sh" >> ~/.bashrc 

希望幫助小號!

+0

這看起來正是我所需要的,但它不適合我。我發佈了一個問題。我們會看看是否有任何東西出來。 – WestonE 2014-10-13 20:50:07

相關問題