mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-05 08:06:00 +02:00

* 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>
17 lines
583 B
Markdown
17 lines
583 B
Markdown
# Get-Content
|
|
|
|
> 지정된 위치에 있는 항목의 내용을 가져옵니다.
|
|
> 참고: 이 명령은 PowerShell을 통해서만 사용할 수 있습니다.
|
|
> 더 많은 정보: <https://learn.microsoft.com/powershell/module/microsoft.powershell.management/get-content>.
|
|
|
|
- 파일의 내용 표시:
|
|
|
|
`Get-Content -Path {{경로\대상\파일}}`
|
|
|
|
- 파일의 처음 몇 줄 표시:
|
|
|
|
`Get-Content -Path {{경로\대상\파일}} -TotalCount {{10}}`
|
|
|
|
- 파일의 내용을 표시하고 `Ctrl + C`를 누를 때까지 계속 읽기:
|
|
|
|
`Get-Content -Path {{경로\대상\파일}} -Wait`
|