4 lines
99 B
Bash
4 lines
99 B
Bash
#!/bin/env bash
|
|
|
|
pdnsutil list-all-zones | while IFS= read -r z; do pdns_control notify "$z"; done
|