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:
코드싸이
2024-11-03 15:18:35 +09:00
committed by GitHub
parent 2567301732
commit dfdf2fca64
15 changed files with 298 additions and 0 deletions

View 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}}`