CLS

Clear the screen.

Syntax
      CLS

If CLS is redirected to file, console or executed through FOR /F it will print a line feed character (ASCII 10).

Errorlevels

If the screen is successfully cleared %ERRORLEVEL% will be unchanged, typically this will be 0 but if a previous command set an errorlevel, that will be preserved (this is a bug).

If a bad switch is given %ERRORLEVEL% ➞ 1

Examples

Echo Hello
CLS
Echo You didnt see that

CLS is an internal command.

“Let me be clear: America wants a strong, peaceful, and prosperous Russia” ~ Barack Obama

Related commands

ECHO - Display message on screen.
Equivalent PowerShell: Clear-Host - Clear the screen.


 
Copyright © 1999-2023 SS64.com
Some rights reserved