clear terminal in windows code example
Example 1: clear cmd
just type cls and hit enter
Example 2: windows clear terminal
Type in "cls" and press enter
Example 3: clear terminal on windows
; -------------------------------------------------------------------------
; Cntr-L should clear screen
; -------------------------------------------------------------------------
#IfWinActive ahk_class ConsoleWindowClass
^L::
Send cls{Enter}
return
#IfWinActive
Example 4: clear terminal
cls
//clean terminal only on windows