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