X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=rif-exportfriends.sh;fp=rif-exportfriends.sh;h=0014a8b1b69dbb9edbb52d2fc7aba22f9da7c3c3;hb=de5564a4c64dfd223ef069ce1ff08c429ab0553a;hp=0000000000000000000000000000000000000000;hpb=5e7312aca321c8fee753f0734144923f1d8f55ad;p=user%2Fhenk%2Fcode%2Fshell%2Frif.git diff --git a/rif-exportfriends.sh b/rif-exportfriends.sh new file mode 100755 index 0000000..0014a8b --- /dev/null +++ b/rif-exportfriends.sh @@ -0,0 +1,16 @@ +#!/bin/sh +# 2019-09-10, Nico Schottelius, Seoul + +if [ $# -ne 1 ]; then + echo "$0: " + echo 'Export your friends to the web!' + exit 1 +fi + +dir=$1; shift +keys="$dir/rifkeys" + +gpg -a --export RIF > "$keys" + +# Ensure everyone can read them +chmod 0644 "$keys"