Scripting dnssec-verify - processing command output

2021-02-06 Thread Matthew Richardson
I have been using Perl to do a reasonable amount of scripting, running bind utilities and processing the results into variables. The details below are from Bind 9.11.27 on Centos 7. The code:- $resp = `dig -t soa example.com`; print "dig resp:'$resp'\n"; gets the result of the dig comma

Re: Scripting dnssec-verify - processing command output

2021-02-06 Thread Paul Kosinski via bind-users
It sounds to me like dnssec-verify is sending the output in question to STDERR instead of STDOUT. On Sat, 06 Feb 2021 19:02:28 + Matthew Richardson wrote: > I have been using Perl to do a reasonable amount of scripting, running bind > utilities and processing the results into variables. T