1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-04 20:55:34 +02:00

ri,rm*,robocopy,rpcinfo: add Korean translation (#14337)

This commit is contained in:
Chooooo 2024-10-24 13:42:38 +09:00 committed by GitHub
parent 3724cb83c6
commit 6813b95910
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 90 additions and 0 deletions

8
pages.ko/windows/ri.md Normal file
View file

@ -0,0 +1,8 @@
# ri
> PowerShell에서 이 명령어는 `Remove-Item`의 별칭입니다.
> 더 많은 정보: <https://learn.microsoft.com/powershell/module/microsoft.powershell.management/remove-item>.
- 원본 명령어의 문서 보기:
`tldr remove-item`

8
pages.ko/windows/rm.md Normal file
View file

@ -0,0 +1,8 @@
# rm
> PowerShell에서 이 명령어는 `Remove-Item`의 별칭입니다.
> 더 많은 정보: <https://learn.microsoft.com/powershell/module/microsoft.powershell.management/remove-item>.
- 원본 명령어의 문서 보기:
`tldr remove-item`

21
pages.ko/windows/rmdir.md Normal file
View file

@ -0,0 +1,21 @@
# rmdir
> 디렉토리와 그 내용을 삭제합니다.
> PowerShell에서 이 명령어는 `Remove-Item`의 별칭입니다. 이 문서는 명령 프롬프트(`cmd`) 버전의 `rmdir`를 기반으로 합니다.
> 더 많은 정보: <https://learn.microsoft.com/windows-server/administration/windows-commands/rmdir>.
- 해당 PowerShell 명령어의 문서 보기:
`tldr remove-item`
- 빈 디렉토리 삭제:
`rmdir {{경로\대상\디렉토리}}`
- 디렉토리와 그 내용 재귀적으로 삭제:
`rmdir {{경로\대상\디렉토리}} /s`
- 디렉토리와 그 내용을 프롬프트 없이 재귀적으로 삭제:
`rmdir {{경로\대상\디렉토리}} /s /q`

View file

@ -0,0 +1,33 @@
# robocopy
> 강력한 파일 및 폴더 복사.
> 기본적으로 원본과 대상의 타임 스탬프 또는 파일 크기가 다른 경우에만 파일이 복사됩니다.
> 더 많은 정보: <https://learn.microsoft.com/windows-server/administration/windows-commands/robocopy>.
- 하나의 디렉토리에서 모든 `.jpg``.bmp` 파일을 다른 디렉토리로 복사:
`robocopy {{경로\대상\원본_디렉토리}} {{경로\대상\대상_디렉토리}} {{*.jpg}} {{*.bmp}}`
- 모든 파일 및 하위 디렉토리를 포함하여 복사:
`robocopy {{경로\대상\원본_디렉토리}} {{경로\대상\대상_디렉토리}} /E`
- 원본에 없는 모든 항목을 제외하고 모든 속성 및 권한을 포함하여 디렉토리를 미러링/동기화:
`robocopy {{경로\대상\원본_디렉토리}} {{경로\대상\대상_디렉토리}} /MIR /COPYALL`
- 대상보다 오래된 원본을 제외한 모든 파일과 하위 디렉토리를 복사:
`robocopy {{경로\대상\원본_디렉토리}} {{경로\대상\대상_디렉토리}} /E /XO`
- 모든 50 MB 이상 파일을 복사하는 대신 목록 표시:
`robocopy {{경로\대상\원본_디렉토리}} {{경로\대상\대상_디렉토리}} /MIN:{{52428800}} /L`
- 재시도를 5회, 대기 시간을 15초로 제한하고 네트워크 연결이 중단된 경우 재개를 허용:
`robocopy {{경로\대상\원본_디렉토리}} {{경로\대상\대상_디렉토리}} /Z /R:5 /W:15`
- 도움말 표시:
`robocopy /?`

View file

@ -0,0 +1,20 @@
# rpcinfo
> 원격 컴퓨터에서 RPC를 통해 프로그램 목록 표시.
> 더 많은 정보: <https://learn.microsoft.com/windows-server/administration/windows-commands/rpcinfo>.
- 로컬 컴퓨터에 등록된 모든 프로그램 표시:
`rpcinfo`
- 원격 컴퓨터에 등록된 모든 프로그램 표시:
`rpcinfo /p {{컴퓨터명}}`
- 원격 컴퓨터에서 특정 프로그램 호출:
`rpcinfo /t {{컴퓨터명}} {{프로그램명}}`
- 원격 컴퓨터에서 특정 프로그램 호출 (UDP 사용):
`rpcinfo /u {{컴퓨터명}} {{프로그램명}}`