Base: Add man page for ping

This commit is contained in:
Tim Ledbetter 2023-05-16 06:13:40 +01:00 committed by Andreas Kling
parent 58e75be199
commit 259f4ffce1

View 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