You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
crystal-keyring/build.sh

14 lines
118 B
Bash

#!/bin/bash
echo > crystal.gpg
pushd pubkeys
for key in $(ls)
do
echo $key
cat $key >> ../crystal.gpg
done
popd