Windows PowerShell에서는 다양하게 변형된 별칭을 통해 UNIX 및 Cmd 사용자가 친숙한 명령 이름을 사용할 수 있습니다. 다음 표에는 별칭이 나타내는 Windows PowerShell 명령과 표준 Windows PowerShell 별칭(있는 경우)과 함께 가장 일반적인 별칭이 나와 있습니다.
Get-Alias cmdlet을 사용하여 Windows PowerShell에서 별칭이 가리키는 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 |
해당 없음 |