multiple pages: standardize domain examples (#3010)

This change standardizes URL examples in tldr-pages
to use the canonical example.com domain.

Pages changed: `dig`, `drill`, `irssi`, `salt`, and `socat`.
This commit is contained in:
Lucas Gabriel Schneider
2019-05-13 10:33:05 -03:00
committed by Waldir Pimenta
parent bbd3c4cbca
commit ce642b6c12
5 changed files with 17 additions and 17 deletions

View File

@@ -4,19 +4,19 @@
- Lookup the IP(s) associated with a hostname (A records):
`dig +short {{hostname.com}}`
`dig +short {{example.com}}`
- Lookup the mail server(s) associated with a given domain name (MX record):
`dig +short {{hostname.com}} MX`
`dig +short {{example.com}} MX`
- Get all types of records for a given domain name:
`dig {{hostname.com}} ANY`
`dig {{example.com}} ANY`
- Specify an alternate DNS server to query:
`dig @{{8.8.8.8}} {{hostname.com}}`
`dig @{{8.8.8.8}} {{example.com}}`
- Perform a reverse DNS lookup on an IP address (PTR record):
@@ -24,8 +24,8 @@
- Find authoritative name servers for the zone and display SOA records:
`dig +nssearch {{hostname.com}}`
`dig +nssearch {{example.com}}`
- Perform iterative queries and display the entire trace path to resolve a domain name:
`dig +trace {{hostname.com}}`
`dig +trace {{example.com}}`