Windows PowerShell 提供一些過渡性質的別名,讓 UNIX 和 Cmd 使用者可以在 Windows PowerShell 中使用他們所熟悉的命令名稱。下表列出最常見的別名,以及這些別名真正指向的 Windows PowerShell 命令,還有 Windows PowerShell 標準別名 (如果存在)。
在 Windows PowerShell 中使用 Get-Alias Cmdlet 可找到任何別名真正指向的 Windows PowerShell 命令。例如,輸入 get-alias cls。
CommandType Name Definition ----------- ---- ---------- Alias cls Clear-Host
CMD 命令 | UNIX 命令 | PS 命令 | PS 別名 |
---|---|---|---|
dir |
ls |
Get-ChildItem |
gci |
cls |
clear |
Clear-Host (函數) |
無 |
del, erase, rmdir |
rm |
Remove-Item |
ri |
copy |
cp |
Copy-Item |
ci |
move |
mv |
Move-Item |
mi |
rename |
mv |
Rename-Item |
rni |
type |
cat |
Get-Content |
gc |
cd |
cd |
Set-Location |
sl |
md |
mkdir |
New-Item |
ni |
無 |
pushd |
Push-Location |
無 |
無 |
popd |
Pop-Location |
無 |