gpg-quorum/gpg-quorum3.sh
2020-04-16 12:53:51 +02:00

21 lines
284 B
Bash
Executable file

#!/usr/bin/env bash
source variables.sh
file=$1
#A,B
gpg -ea -r $a -r $b $debug --output $file.step1 $file
#A,C
gpg -ea -r $a -r $c $debug --output $file.step2 $file.step1
#B,C
gpg -ea -r $b -r $c $debug --output $file.asc $file.step2
rm test.txt.step*
#matrix:
#A,B
#A,C
#B,C