aboutsummaryrefslogtreecommitdiff
path: root/share/keyringer/recipients
blob: 593a9946fafa605de4e77ee6cba5abb466c476c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/bash
#
# Recipient management.
#

# Load functions
LIB="`dirname $0`/../../lib/keyringer"
source $LIB/functions || exit 1

# Command parser
keyringer_get_command $2

if [ "$COMMAND" == "ls" ]; then
  cat $RECIPIENTS
elif [ "$COMMAND" == "edit" ]; then
  $EDITOR $RECIPIENTS
else
  echo "$BASENAME: No such command $COMMAND"
  exit 1
fi