You all know that #Eshell is a marvel. We will talk more about it but a very interesting tip to start with is how to clear the screen like in sh.
If we type “clear”, the cursor will go to the center and as soon as we type it will go to the bottom.
It can be uncomfortable.
If we type “clear 1” instead, the cursor will go to the top and it will write there, just like in any shell, such as bash, zsh, fish, etc.
An alias helps a lot:
- alias clear clear 1
Greetings

