Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- bdir=/var/backups
- for archivo in "$bdir/"*; do
- if [[ "$archivo" == *".sha256" ]]; then
- continue
- fi
- if [[ "$archivo" == *".sign" ]]; then
- continue
- fi
- echo $archivo
- sha256sum $archivo
- echo Fichero ${archivo}.sha256
- cat ${archivo}.sha256
- gpg --verify ${archivo}.sign $archivo 2>&1 | grep -i corr
- echo ""
- done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement