osx/terminal-notifier: fix typo, osx/*: add Korean translation (#14758)

This commit is contained in:
코드싸이
2024-11-12 04:54:15 +09:00
committed by GitHub
parent 3c745bfaae
commit f5003bb990
202 changed files with 3796 additions and 1 deletions

28
pages.ko/osx/ping.md Normal file
View File

@@ -0,0 +1,28 @@
# ping
> 네트워크 호스트에 ICMP ECHO_REQUEST 패킷을 전송합니다.
> 더 많은 정보: <https://keith.github.io/xcode-man-pages/ping.8.html>.
- 지정된 호스트에 핑 보내기:
`ping "{{호스트명}}"`
- 호스트에 특정 횟수만큼 핑 보내기:
`ping -c {{횟수}} "{{호스트}}"`
- 요청 간격을 초 단위로 지정하여 호스트에 핑 보내기 (기본값은 1초):
`ping -i {{초}} "{{호스트}}"`
- 주소에 대한 기호 이름을 조회하지 않고 호스트에 핑 보내기:
`ping -n "{{호스트}}"`
- 호스트에 핑을 보내고 패킷을 수신했을 때 벨을 울리기 (터미널이 지원하는 경우):
`ping -a "{{호스트}}"`
- 호스트에 핑을 보내고 패킷을 수신한 시간을 표시하기 (이 옵션은 Apple 추가 기능입니다):
`ping --apple-time "{{호스트}}"`