1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.zh/osx/ping.md
Sebastiaan Speck 3d2229fb34
ping: add Dutch translation and fix typos (#13017)
* ping: add Dutch translation and fix typos

* ping6: add Dutch translation

* Apply suggestions from code review

* Apply suggestions from code review

* Update ping.md

Co-authored-by: Jack Lin <blueskyson1401@gmail.com>

---------

Co-authored-by: Jack Lin <blueskyson1401@gmail.com>
2024-06-18 22:17:14 +02:00

28 lines
697 B
Markdown

# ping
> 向网络主机发送 ICMP 回显请求数据包。
> 更多信息:<https://keith.github.io/xcode-man-pages/ping.8.html>.
- Ping 指定的主机:
`ping "{{主机}}"`
- 对主机执行指定定次数的 ping 操作:
`ping -c {{次数}} "{{主机}}"`
- Ping 主机 , 指定请求之间的间隔(以秒为单位)(默认为 1 秒):
`ping -i {{秒}} "{{主机}}"`
- Ping 主机, 但不尝试查找地址的符号名:
`ping -n "{{主机}}"`
- Ping 主机 并在收到数据包时响铃(如果您的终端支持):
`ping -a "{{主机}}"`
- Ping 主机 并打印接收数据包的时间(此选项是 Apple 的附加项):
`ping --apple-time "{{主机}}"`