windows/get*: add Korean translation (#14524)
* windows/get*: add Korean translation * get-wuapiversion: fix typo * get-wuapiversion: fix typo Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> * pages.ko/windows/getmac: fix typo Co-authored-by: Chooooo <contact@choo.ooo> * pages.ko/windows/get-wuapiversion: fix typo Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> --------- Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Co-authored-by: Chooooo <contact@choo.ooo>
This commit is contained in:
21
pages.ko/windows/get-alias.md
Normal file
21
pages.ko/windows/get-alias.md
Normal file
@@ -0,0 +1,21 @@
|
||||
# Get-Alias
|
||||
|
||||
> 현재 PowerShell 세션에서 명령 별칭을 나열하고 가져옵니다.
|
||||
> 이 명령은 PowerShell에서만 실행할 수 있습니다.
|
||||
> 더 많은 정보: <https://learn.microsoft.com/powershell/module/microsoft.powershell.utility/get-alias>.
|
||||
|
||||
- 현재 세션의 모든 별칭 나열:
|
||||
|
||||
`Get-Alias`
|
||||
|
||||
- 별칭이 가리키는 명령 이름 가져오기:
|
||||
|
||||
`Get-Alias {{명령_별칭}}`
|
||||
|
||||
- 특정 명령에 할당된 모든 별칭 나열:
|
||||
|
||||
`Get-Alias -Definition {{명령}}`
|
||||
|
||||
- `abc`로 시작하고 `def`로 끝나지 않는 별칭 나열:
|
||||
|
||||
`Get-Alias {{abc}}* -Exclude *{{def}}`
|
Reference in New Issue
Block a user