mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
Base: Add man page for ping
This commit is contained in:
parent
58e75be199
commit
259f4ffce1
Notes:
sideshowbarker
2024-07-17 05:23:40 +09:00
Author: https://github.com/tcl3 Commit: https://github.com/SerenityOS/serenity/commit/259f4ffce1 Pull-request: https://github.com/SerenityOS/serenity/pull/18868
1 changed files with 20 additions and 0 deletions
20
Base/usr/share/man/man8/ping.md
Normal file
20
Base/usr/share/man/man8/ping.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
## Name
|
||||
|
||||
ping - send ICMP ECHO_REQUEST packets to network hosts
|
||||
|
||||
## Synopsis
|
||||
|
||||
```sh
|
||||
$ ping [--count count] [-i interval] [--size size] [--quiet] <host>
|
||||
```
|
||||
|
||||
## Options
|
||||
|
||||
* `-c count`, `--count count`: Stop after sending specified number of ECHO_REQUEST packets.
|
||||
* `-i interval`: Wait `interval` seconds between sending each packet. Fractional seconds are allowed.
|
||||
* `-s size`, `--size size`: Amount of bytes to send as payload in the ECHO_REQUEST packets.
|
||||
* `-q`, `--quiet`: Quiet mode. Only display summary when finished.
|
||||
|
||||
## Arguments
|
||||
|
||||
* `host`: Host to ping
|
Loading…
Reference in a new issue