Basics
Moving Around
# current working directory
Get-Location
pwd
# list current working directory's content
Get-ChildItem
ls
dir
# change directory
Set-Location <path>
cd <path>
# display file's content
Get-Content <file>
type <file>
cat <file>
# clear screen
cls
clear
Clear-HostHistory
Hotkeys
HotKey
Description
Aliases
Alias
Description
Last updated