wesher/tests/wg

18 lines
315 B
Plaintext
Raw Normal View History

#!/bin/sh
case $1 in
'')
echo "nothing to see here"
;;
genkey)
echo "ILICZ3yBMCGAWNIq5Pn0bewBVimW3Q2yRVJ/Be+b1Uc="
;;
pubkey)
read x
echo "VceweY6x/QdGXEQ6frXrSd8CwUAInUmqIc6G/qi8FHo="
;;
*)
2019-03-30 21:20:49 +01:00
echo "what?"
exit 1
;;
esac