2022/01/12 #定義づけ(る)

皆様おはようございます、
#猫でもできるPowerShell(備忘録)
#定義づけ(る)

PS> Get-Command Clear-Host |FL Definition

Definition : 
             $RawUI = $Host.UI.RawUI
             $RawUI.CursorPosition = @{X=0;Y=0}
             $RawUI.SetBufferContents(
                 @{Top = -1; Bottom = -1; Right = -1; Left = -1},
                 @{Character = ' '; ForegroundColor = $rawui.ForegroundColor; BackgroundColor = $rawui.BackgroundColor})
             # .Link
             # https://go.microsoft.com/fwlink/?LinkID=225747
             # .ExternalHelp System.Management.Automation.dll-help.xml
             
あーそういう事か、というのがおぼろげながら読み取れる内容です
Clear-Host がこれら一連コマンドのエイリアス、という説明になりますでしょうか
ではまた;