From 46ae2cafab1878188152e0170816dedcdfe5adbb Mon Sep 17 00:00:00 2001 From: Melvin Date: Sun, 21 Aug 2022 20:46:13 +0200 Subject: [PATCH 1/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fcdd68d..40b174b 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # unhttpx -unhttpx is not a fast and multi-purpose HTTP toolkit that allows running multiple probes using the retryablehttp library. In fact, it does the exact opposite. +unhttpx is **not** a fast and multi-purpose HTTP toolkit that allows running multiple probes using the retryablehttp library. In fact, it does the exact opposite. **TL;DR: turns a list of URLs into hostnames.** From 515e0f3add66259a2f7086b3f1474d0e8e1d2f19 Mon Sep 17 00:00:00 2001 From: Melvin Date: Sun, 21 Aug 2022 20:46:29 +0200 Subject: [PATCH 2/3] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 40b174b..55adafa 100644 --- a/README.md +++ b/README.md @@ -12,5 +12,7 @@ go install -v github.com/melvinsh/unhttpx@latest ## Usage ``` bash +echo "https://google.com/yo" | unhttpx + cat urls.txt | unhttpx ``` From e04dd39969a7a3f59838fc69d9d741100482873d Mon Sep 17 00:00:00 2001 From: Melvin Date: Sun, 21 Aug 2022 20:50:07 +0200 Subject: [PATCH 3/3] Update README.md --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 55adafa..164404c 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,10 @@ go install -v github.com/melvinsh/unhttpx@latest ## Usage ``` bash -echo "https://google.com/yo" | unhttpx +$ echo "https://google.com/yo" | unhttpx +google.com -cat urls.txt | unhttpx +$ cat urls.txt | unhttpx +hackerone.com +zerocopter.com ```