>>414
get-alias (gal)で、alias を表示できる。
多くのLinux コマンドのalias も、指定されている

gal | where-object {$_.Definition -match "remove-item"}
# Remove-Item のalias は、del, erase, rd, ri, rm, rmdir

gal | where-object {$_.Definition -match "copy-item"}
# Copy-Item のalias は、copy, cp, cpi

gal -name ls
# ls -> Get-ChildItem

gal -name echo
# echo -> Write-Output