A bunch of new pages:
common/: dig, gzip, rm, sort, zfs, zpool
linux/: apt-get, shutdown
osx/: airport, caffeinate, diskutil, networksetup open, pgrep, qlmanage, say, shutdown, sysctl, system_profiler
Edits to existing pages:
curl: Added simple download example
find: Added iname and size exmaples
grep: Edited -c description
ps: Added wide lines example
ssh: edited -D description, added simple port forwarding example
unzip: added list option
2014-02-10 20:36:05 +00:00
|
|
|
# dig
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
> DNS Lookup utility.
|
A bunch of new pages:
common/: dig, gzip, rm, sort, zfs, zpool
linux/: apt-get, shutdown
osx/: airport, caffeinate, diskutil, networksetup open, pgrep, qlmanage, say, shutdown, sysctl, system_profiler
Edits to existing pages:
curl: Added simple download example
find: Added iname and size exmaples
grep: Edited -c description
ps: Added wide lines example
ssh: edited -D description, added simple port forwarding example
unzip: added list option
2014-02-10 20:36:05 +00:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Lookup the IP(s) associated with a hostname (A records):
|
A bunch of new pages:
common/: dig, gzip, rm, sort, zfs, zpool
linux/: apt-get, shutdown
osx/: airport, caffeinate, diskutil, networksetup open, pgrep, qlmanage, say, shutdown, sysctl, system_profiler
Edits to existing pages:
curl: Added simple download example
find: Added iname and size exmaples
grep: Edited -c description
ps: Added wide lines example
ssh: edited -D description, added simple port forwarding example
unzip: added list option
2014-02-10 20:36:05 +00:00
|
|
|
|
2014-02-17 17:15:48 +00:00
|
|
|
`dig +short {{hostname.com}}`
|
A bunch of new pages:
common/: dig, gzip, rm, sort, zfs, zpool
linux/: apt-get, shutdown
osx/: airport, caffeinate, diskutil, networksetup open, pgrep, qlmanage, say, shutdown, sysctl, system_profiler
Edits to existing pages:
curl: Added simple download example
find: Added iname and size exmaples
grep: Edited -c description
ps: Added wide lines example
ssh: edited -D description, added simple port forwarding example
unzip: added list option
2014-02-10 20:36:05 +00:00
|
|
|
|
2018-02-02 06:43:22 +00:00
|
|
|
- Lookup the mail server(s) associated with a given domain name (MX record):
|
A bunch of new pages:
common/: dig, gzip, rm, sort, zfs, zpool
linux/: apt-get, shutdown
osx/: airport, caffeinate, diskutil, networksetup open, pgrep, qlmanage, say, shutdown, sysctl, system_profiler
Edits to existing pages:
curl: Added simple download example
find: Added iname and size exmaples
grep: Edited -c description
ps: Added wide lines example
ssh: edited -D description, added simple port forwarding example
unzip: added list option
2014-02-10 20:36:05 +00:00
|
|
|
|
2014-02-17 17:15:48 +00:00
|
|
|
`dig +short {{hostname.com}} MX`
|
A bunch of new pages:
common/: dig, gzip, rm, sort, zfs, zpool
linux/: apt-get, shutdown
osx/: airport, caffeinate, diskutil, networksetup open, pgrep, qlmanage, say, shutdown, sysctl, system_profiler
Edits to existing pages:
curl: Added simple download example
find: Added iname and size exmaples
grep: Edited -c description
ps: Added wide lines example
ssh: edited -D description, added simple port forwarding example
unzip: added list option
2014-02-10 20:36:05 +00:00
|
|
|
|
2018-02-02 06:43:22 +00:00
|
|
|
- Get all types of records for a given domain name:
|
|
|
|
|
|
|
|
`dig {{hostname.com}} ANY`
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Specify an alternate DNS server to query (8.8.8.8 is google's public DNS):
|
A bunch of new pages:
common/: dig, gzip, rm, sort, zfs, zpool
linux/: apt-get, shutdown
osx/: airport, caffeinate, diskutil, networksetup open, pgrep, qlmanage, say, shutdown, sysctl, system_profiler
Edits to existing pages:
curl: Added simple download example
find: Added iname and size exmaples
grep: Edited -c description
ps: Added wide lines example
ssh: edited -D description, added simple port forwarding example
unzip: added list option
2014-02-10 20:36:05 +00:00
|
|
|
|
2018-02-02 06:43:22 +00:00
|
|
|
`dig @{{8.8.8.8}} {{hostname.com}}`
|
2016-08-13 05:01:26 +01:00
|
|
|
|
|
|
|
- Perform a reverse DNS lookup on an IP address (PTR record):
|
|
|
|
|
2018-02-02 06:43:22 +00:00
|
|
|
`dig -x {{8.8.8.8}}`
|
2017-01-11 15:20:26 +00:00
|
|
|
|
|
|
|
- Find authoritative name servers for the zone and display SOA records:
|
|
|
|
|
|
|
|
`dig +nssearch {{hostname.com}}`
|
2018-02-02 06:43:22 +00:00
|
|
|
|
|
|
|
- Perform iterative queries and display the entire trace path to resolve a domain name:
|
|
|
|
|
|
|
|
`dig +trace {{hostname.com}}`
|