Open Source It
In the DOS interface of Windows, the command to clear the screen is CLS, so what is the command to clear the screen in Linux? Here are some ways to share some of the Linux down-screen commands.
(1) Clear
This command will refresh the screen, essentially just let the terminal Display page backward page, if you scroll up the screen can also see the previous operation information. This command is usually used.
(2) Reset
This command will completely refresh the terminal screen, the previous terminal input operation information will be emptied, so although relatively refreshing, but the entire command process is a bit slow, less use.
(3) In addition, an alias to use the clear-screen command method, as follows:
[[email protected] ~]$ alias cls= ' Clear '
[[Email protected] ~]$ CLS
After executing the above command, you can then enter the CLS command directly to implement the clear Screen command.
Linux Clear Screen command