common/p*: add Korean translation (#14663)

* common/p*: add Korean translation

* Update pages.ko/common/perldoc.md

Co-authored-by: Chooooo <contact@choo.ooo>

* Update pages.ko/common/pcdovtoppm.md

Co-authored-by: Chooooo <contact@choo.ooo>

---------

Co-authored-by: Chooooo <contact@choo.ooo>
This commit is contained in:
코드싸이
2024-11-07 14:54:05 +09:00
committed by GitHub
parent fd7d9f925b
commit 2317407751
161 changed files with 3836 additions and 0 deletions

38
pages.ko/common/pwsh.md Normal file
View File

@@ -0,0 +1,38 @@
# pwsh
> 시스템 관리를 위해 특별히 설계된 명령줄 셸 및 스크립팅 언어.
> 이 명령은 PowerShell 버전 6 이상(또는 PowerShell Core 및 크로스 플랫폼 PowerShell)을 의미합니다.
> 원래 Windows 버전(5.1 이하, 레거시 Windows PowerShell이라고도 함)을 사용하려면 `pwsh` 대신 `powershell`을 사용하세요.
> 더 많은 정보: <https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_pwsh>.
- 대화형 셸 세션 시작:
`pwsh`
- 시작 구성 파일을 로드하지 않고 대화형 셸 세션 시작:
`pwsh -NoProfile`
- 특정 명령 실행:
`pwsh -Command "{{echo 'powershell is executed'}}"`
- 특정 스크립트 실행:
`pwsh -File {{경로/대상/스크립트.ps1}}`
- 특정 버전의 PowerShell로 세션 시작:
`pwsh -Version {{버전}}`
- 시작 명령 실행 후 셸이 종료되지 않도록 방지:
`pwsh -NoExit`
- PowerShell에 전송되는 데이터 형식 설명:
`pwsh -InputFormat {{Text|XML}}`
- PowerShell 출력 형식 결정:
`pwsh -OutputFormat {{Text|XML}}`