Windows PowerShell には、UNIX や Cmd のユーザーが、使い慣れたコマンド名を Windows PowerShell でも使用できるよう、いくつかのエイリアスが用意されています。最も一般的なエイリアスについて、対応する Windows PowerShell コマンド、および Windows PowerShell の標準エイリアス (存在する場合) と共に以下の表にまとめました。
エイリアスに対応する Windows PowerShell コマンドは、Windows PowerShell から Get-Alias コマンドレットを使用して検索できます。たとえば、「get-alias cls」と入力します。
CommandType Name Definition ----------- ---- ---------- Alias cls Clear-Host
CMD コマンド | UNIX コマンド | PS コマンド | PS エイリアス |
---|---|---|---|
dir |
ls |
Get-ChildItem |
gci |
cls |
clear |
Clear-Host (関数) |
N/A |
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 |
N/A |
pushd |
Push-Location |
N/A |
N/A |
popd |
Pop-Location |
N/A |