Skip to content

Commit

Permalink
minor changes in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Jozef Reisinger committed Nov 20, 2021
1 parent a3223ca commit a4ca7fc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# checkip

Checkip provides generic and security information about an IP address in a
quick and simple way. It uses various free public services to do so. It's easy
to extend.
quick and simple way. It uses various free public services to do so.

```
$ checkip 91.228.166.47
Expand Down Expand Up @@ -37,7 +36,7 @@ virustotal.com network: 218.92.0.0/16, SAN: n/a
Malicious 50% 🚫
```

The CLI tool supports also JSON output:
The CLI tool also supports JSON output:

```
checkip -j 118.25.6.39 | jq -r '.checks[] | select(.type == 1 or .type == 2) | "\(.malicious)\t\(.name)"' | sort
Expand Down Expand Up @@ -71,5 +70,6 @@ You can also use environment variables with the same names.

## Development

If you want to add a new way to check an IP address, just provide a function
of type [Check](https://pkg.go.dev/github.com/jreisinger/checkip/check#Check).
Checkip is easy to extend. If you want to add a new way to check an IP address,
just provide a function of type
[Check](https://pkg.go.dev/github.com/jreisinger/checkip/check#Check).

0 comments on commit a4ca7fc

Please sign in to comment.