Find files that ends with tilde

Find files:

find . -type f -name '*~'

To delete the files:

find . -type f -name '*~' -exec rm -f '{}' \;

View expiration date of DNSSEC signature

  dig SOA yourdomain.com @nameserver +dnssec  

Mais vistos