better allowed domain example

This commit is contained in:
AJ ONeal 2020-08-25 02:37:19 -06:00
parent 21a0892146
commit a61f012507
1 changed files with 2 additions and 2 deletions

View File

@ -9,8 +9,8 @@ import (
)
func help() {
fmt.Fprintf(os.Stderr, "Usage: iplist domain.tld 123.45.6.78\n")
fmt.Fprintf(os.Stderr, "(`dig TXT +short domain.tld` should return a list like `v=spf1 ip4:123.45.6.78 ip4:123.45.6.1/24`\n")
fmt.Fprintf(os.Stderr, "Usage: iplist _allowed.domain.tld 123.45.6.78\n")
fmt.Fprintf(os.Stderr, "(`dig TXT +short _allowed.domain.tld` should return a list like `v=spf1 ip4:123.45.6.78 ip4:123.45.6.1/24`\n")
os.Exit(1)
}