7 lines
149 B
Plaintext
7 lines
149 B
Plaintext
|
#!/bin/bash
|
||
|
../tdns 0.0.0.0:9999 &
|
||
|
sleep 1
|
||
|
../tdig www.powerdns.com A 127.0.0.1:9999 > actual_output
|
||
|
kill %1
|
||
|
diff -uBb correct_output actual_output
|