I need to Reset my MobaXterm screen after some time working, however 'clear' and 'reset' commands wont work as if I was on a linux server.
Anyone have some tip?
I need to Reset my MobaXterm screen after some time working, however 'clear' and 'reset' commands wont work as if I was on a linux server.
Anyone have some tip?
Right click MobaXterm screen > Click Clear Scrollback
Note: Your MobaXterm may be set to paste on Right-Click; in this case use Ctrl+Right-Click.
To reset your MobaXterm screen, use:
Or, if the prompt is available, launch the command 'cls'
Or, in all cases (prompt available or not), press CTRL
+L
keyboard keys
Mobaterm seems to like playing around with the putty configuration - so I found that right clicking on the window -> change terminal settings
-> features -> enable everything.
-> window -> disable push erased text into scrollback
the usual clear control commands
function clear() {
printf '\033[2J' # clear
printf '\033[H' # home
}
will now clear the screen and clear the scrollback
Change terminal settings...
Terminal
> Features
Disable remote-controlled clearing of scrollback
Window
Reset scrollback on display activity
Apply
buttonYou can now type clear
and have the window clear and remove the scrollback.