mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-01 09:15:22 +02:00
type,tzutil,uwfmgr,vcvarsall,wget: add Korean translation (#14204)
This commit is contained in:
parent
c3eb0ce047
commit
5910ebfff3
5 changed files with 91 additions and 0 deletions
8
pages.ko/windows/type.md
Normal file
8
pages.ko/windows/type.md
Normal file
|
@ -0,0 +1,8 @@
|
|||
# type
|
||||
|
||||
> 파일의 내용을 표시합니다.
|
||||
> 더 많은 정보: <https://learn.microsoft.com/windows-server/administration/windows-commands/type>.
|
||||
|
||||
- 특정 파일의 내용 표시:
|
||||
|
||||
`type {{경로\대상\파일}}`
|
16
pages.ko/windows/tzutil.md
Normal file
16
pages.ko/windows/tzutil.md
Normal file
|
@ -0,0 +1,16 @@
|
|||
# tzutil
|
||||
|
||||
> 시스템 시간대를 표시하거나 구성하는 도구입니다.
|
||||
> 더 많은 정보: <https://learn.microsoft.com/windows-server/administration/windows-commands/tzutil>.
|
||||
|
||||
- 현재 시간대 가져오기:
|
||||
|
||||
`tzutil /g`
|
||||
|
||||
- 사용 가능한 시간대 목록 표시:
|
||||
|
||||
`tzutil /l`
|
||||
|
||||
- 시스템 시간대를 특정 값으로 설정:
|
||||
|
||||
`tzutil /s {{시간대_아이디}}`
|
29
pages.ko/windows/uwfmgr.md
Normal file
29
pages.ko/windows/uwfmgr.md
Normal file
|
@ -0,0 +1,29 @@
|
|||
# uwfmgr
|
||||
|
||||
> 통합 쓰기 필터 (UWF).
|
||||
> 드라이브를 보호하기 위해 드라이브에 대한 모든 쓰기를 가상 오버레이로 리디렉션합니다. 기본적으로 재부팅 후 쓰기는 커밋되지 않으면 삭제됩니다.
|
||||
> 더 많은 정보: <https://learn.microsoft.com/windows/iot/iot-enterprise/customize/unified-write-filter>.
|
||||
|
||||
- 현재 상태 가져오기:
|
||||
|
||||
`uwfmgr get-config`
|
||||
|
||||
- 드라이브를 보호로 설정:
|
||||
|
||||
`uwfmgr volume protect {{드라이브_문자}}:`
|
||||
|
||||
- 보호 목록에서 드라이브 제거:
|
||||
|
||||
`uwfmgr volume unprotect {{드라이브_문자}}:`
|
||||
|
||||
- 보호 사용 또는 사용 안 함 (재부팅 후 적용):
|
||||
|
||||
`uwfmgr filter {{enable|disable}}`
|
||||
|
||||
- 보호된 드라이브의 파일 변경 사항 커밋:
|
||||
|
||||
`uwfmgr file commit {{드라이브_문자:\경로\대상\파일}}`
|
||||
|
||||
- 보호된 드라이브의 파일 삭제 커밋:
|
||||
|
||||
`uwfmgr file commit-delete {{드라이브_문자:\경로\대상\파일}}`
|
21
pages.ko/windows/vcvarsall.md
Normal file
21
pages.ko/windows/vcvarsall.md
Normal file
|
@ -0,0 +1,21 @@
|
|||
# vcvarsall
|
||||
|
||||
> Microsoft Visual Studio 도구를 사용하기 위해 필요한 환경 변수를 설정합니다.
|
||||
> 특정 Visual Studio 설치에 대한 `vcvarsall` 경로는 `vswhere`를 사용하여 찾을 수 있습니다.
|
||||
> 더 많은 정보: <https://learn.microsoft.com/cpp/build/building-on-the-command-line>.
|
||||
|
||||
- 네이티브 x64 환경 설정:
|
||||
|
||||
`vcvarsall x64`
|
||||
|
||||
- x64 호스트에서 네이티브 x86 크로스 컴파일 환경 설정:
|
||||
|
||||
`vcvarsall x64_x86`
|
||||
|
||||
- x64 호스트에서 네이티브 Arm x64 크로스 컴파일 환경 설정:
|
||||
|
||||
`vcvarsall x64_arm64`
|
||||
|
||||
- 네이티브 UWP x64 환경 설정:
|
||||
|
||||
`vcvarsall x64 uwp`
|
17
pages.ko/windows/wget.md
Normal file
17
pages.ko/windows/wget.md
Normal file
|
@ -0,0 +1,17 @@
|
|||
# wget
|
||||
|
||||
> 원래 `wget` 프로그램 (<https://www.gnu.org/software/wget>)이 제대로 설치되지 않은 경우, PowerShell에서는 이 명령이 `Invoke-WebRequest`의 별칭일 수 있습니다.
|
||||
> 참고: 버전 명령어가 오류를 반환하는 경우, PowerShell이 이 명령을 `Invoke-WebRequest`로 대체할 수 있습니다.
|
||||
> 더 많은 정보: <https://learn.microsoft.com/powershell/module/microsoft.powershell.utility/invoke-webrequest>.
|
||||
|
||||
- 원래 `wget` 명령어의 문서 보기:
|
||||
|
||||
`tldr wget -p common`
|
||||
|
||||
- PowerShell의 `Invoke-WebRequest` 명령어의 문서 보기:
|
||||
|
||||
`tldr invoke-webrequest`
|
||||
|
||||
- 버전 표시:
|
||||
|
||||
`wget --version`
|
Loading…
Add table
Reference in a new issue