Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #2

Merged
merged 1 commit into from
Feb 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 33 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,34 @@
# meowping
# MeowPing

read description ig
MeowPing is a command-line utility for testing network connectivity using ICMP echo requests or TCP connections. It provides similar functionality to traditional ping utilities but with a touch of whimsy and color. MeowPing supports both domain names and IP addresses, allowing users to check the availability and responsiveness of network hosts.

## Features

- ICMP echo request-based network testing.
- TCP connection-based network testing.
- Colorful and visually appealing output.
- Display of connection statistics including success rate, minimum, maximum, and average connection times.
## Usage

MeowPing offers a simple command-line interface with various options:

```powershell

meowping [OPTIONS] <destination>

OPTIONS:
-p, --port <port> Specify the port to connect (default: 80 for HTTP)
-t, --timeout <ms> Set the timeout for each connection attempt in milliseconds (default: 1000ms)
-c, --count <count> Set the number of connection attempts (default: 99999)

ARGS:
<destination> Specify the destination to ping (can be an IP address or domain name)


```

### Example Usage

```powershell
meowping 8.8.8.8 -p 53
```