Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/learning-powershell/powershell-beginners-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down