Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/zsh
- #Assumes it is being run in the directory containing the artefacts
- PRE="apache-wave-"
- for f in $PRE*; do
- gpg --armor --output $f.asc --detach-sig $f
- gpg --print-md SHA512 $f > $f.sha
- done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement