Skip to content

Commit

Permalink
correcting the message for '-result-count' parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
MilindPurswani committed Aug 12, 2020
1 parent 8a8efe7 commit c624213
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ func main() {
var cn string
flag.StringVar(&cn, "company-name", "", "Company Name for which you need to get all the assets from whoxy")
var rCount int
flag.IntVar(&rCount, "result-count", -1, "The count of results that you need to fetch from the API. Keep in mind that 1 request will give 50000 domains only. So, if you want to fetch 100,000 results, the tool will make 2 requests. Make sure you have sufficient credits available.")
flag.IntVar(&rCount, "result-count", -1, "The count of results that you need to fetch from the API. Keep in mind that 1 request will give 2500 domains only. So, if you want to fetch 10,000 results, the tool will make 4 requests. Make sure you have sufficient credits available.")
flag.Parse()
if flag.NArg() > 0 {
log.Fatal("Kindly check the docs whoxy -h for usage")
Expand Down

0 comments on commit c624213

Please sign in to comment.