mirror of
https://git.dn42.dev/dns/config
synced 2025-03-14 15:43:33 +00:00
7 lines
141 B
Bash
Executable File
7 lines
141 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euxo pipefail
|
|
|
|
find new/ -type f -not -name template -exec bash -c 'grep RRSIG "$0" >> "dnskey/$(basename "$0")"' '{}' \;
|
|
|