command line clear terminal windows code example
Example 1: windows clear terminal
Type in "cls" and press enter
Example 2: clear terminal on windows
; -------------------------------------------------------------------------
; Cntr-L should clear screen
; -------------------------------------------------------------------------
#IfWinActive ahk_class ConsoleWindowClass
^L::
Send cls{Enter}
return
#IfWinActive