grimoire

personal wiki
git clone git://git.pyratebeard.net/grimoire.git
Log | Files | Refs

dig.md (328B)


      1 # dig
      2 
      3 display all information
      4 ```
      5 dig <hostname>
      6 ```
      7 
      8 add `+no<section>` to hide info
      9 * comments
     10 * authority
     11 * additional
     12 * answer
     13 * stats
     14 
     15 ```
     16 dig +nocomments +noadditional <hostname>
     17 ```
     18 
     19 use `+noall` to hide everything, but show answer
     20 ```
     21 dig +noall +answer <hostname>
     22 ```
     23 
     24 use a list 
     25 ```
     26 dig -f <file> +noall +answer
     27 ```