diff --git a/docs/learning-powershell/powershell-beginners-guide.md b/docs/learning-powershell/powershell-beginners-guide.md index c689b5ce859..fbbbd7853b0 100644 --- a/docs/learning-powershell/powershell-beginners-guide.md +++ b/docs/learning-powershell/powershell-beginners-guide.md @@ -87,6 +87,7 @@ CommandType Name Alias cd -> Set-Location Alias cls -> Clear-Host +Alias clear -> Clear-Host Alias copy -> Copy-Item Alias dir -> Get-ChildItem Alias gc -> Get-Content @@ -96,7 +97,7 @@ Alias type -> Get-Content … ``` -As you can see `cls` is an alias of `Clear-Host`. +As you can see `cls` or `clear` is an alias of `Clear-Host`. Now try it: ```powershell