在 PowerShell 中清除屏幕
通常,PowerShell 用户可能会遇到混乱的控制台界面,因为多个命令确实有不同的输出。为了摆脱这种情况,我们需要清除 PowerShell 控制台的屏幕。
本文提供了几种清除 PowerShell 屏幕脚本环境的方法。
PowerShell 清屏简介
PowerShell 清除屏幕方法由函数 Clear-Host
及其两个别名 cls
和 clear
支持。本节的计划旨在指导你清除 PowerShell 屏幕。
Clear-Host
在 PowerShell 中使用 Clear-Host
命令
PowerShell 自动化依赖于 PowerShell 支持的本机函数、cmdlet 和别名。例如,Windows PowerShell 的 Clean-Host
命令会清除控制台的屏幕。
它是 PowerShell 的独立操作,不能通过管道传输或与任何其他 cmdlet 一起使用。它不会产生输出。
我们可以通过以下方式应用 Clear-Host
功能。
PowerShell 中 Clear-Host
命令的别名
PowerShell 中的别名与特定的本机命令相关联。但是,我们可以为 PowerShell 中的任何函数或 cmdlet 自定义和创建别名。
例如,Clear-Host
函数支持两个内置别名,cls
和 clear
。
cls
此外,可以通过以下方式使用 clear
别名清除 PowerShell 的控制台。
clear
我们可以通过 Get-Alias
命令验证这些别名是否使用 Clear-Host
函数。
示例代码:
Get-Alias clear
Get-Alias cls
输出:
PS C:\temp> Get-Alias Clear
CommandType Name Version Source
----------- ---- ------- ------
Alias clear -> Clear-Host
PS C:\temp> Get-Alias Cls
CommandType Name Version Source
----------- ---- ------- ------
Alias cls -> Clear-Host
我们将通过上一节中介绍的清除 PowerShell 屏幕的方法。但是,可以观察到 PowerShell 命令不区分大小写,同样适用于该函数。
因此,我们可以得出结论,我们可以在任何字母大小写(大写或小写)中使用 Clear-Host
及其别名。
结论
PowerShell 是一种创新的命令行工具,为所有操作系统提供跨平台支持。此外,所述脚本语言具有许多由别名支持的功能和 cmdlet,可以执行多项任务。
在本文中,我们介绍了如何清除 PowerShell 屏幕。
第一种方法使用 Clear-Host
功能来获得更干净的脚本控制台。另外两种方式 Cls
和 Clear
也与 Clear-Host
相关联,因为它们是 Clear-Host
的别名。
Marion specializes in anything Microsoft-related and always tries to work and apply code in an IT infrastructure.
LinkedIn