Advertisement
Guest User

artifact-sign

a guest
Jul 12th, 2014
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.21 KB | None | 0 0
  1. #!/bin/zsh
  2. #Assumes it is being run in the directory containing the artefacts
  3.  
  4. PRE="apache-wave-"
  5. for f in $PRE*; do
  6.   gpg --armor --output $f.asc --detach-sig $f
  7.   gpg --print-md SHA512 $f > $f.sha
  8. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement