mirror of
https://github.com/koenrh/dnscontrol-action.git
synced 2025-01-22 23:19:11 +08:00
10 lines
276 B
Bash
10 lines
276 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# source: https://git.io/J86QD
|
||
|
grep -v -e '^\.\.\.0 corrections$' |\
|
||
|
grep -v -e '^0 corrections' |\
|
||
|
grep -v -e '\.\.\. (skipping)' |\
|
||
|
grep -v -e '^----- DNS Provider: ' |\
|
||
|
grep -v -e '^----- Registrar: ' |\
|
||
|
grep -v -e '^----- Getting nameservers from:'
|