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

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

# Command parser
keyringer_get_command "$2"

if [ "$COMMAND" == "ls" ]; then
  cat "$RECIPIENTS"
elif [ "$COMMAND" == "edit" ]; then
  "$EDITOR" "$RECIPIENTS"
  keyringer_check_recipients
else
  printf "%s: No such command %s\n" "$BASENAME" "$COMMAND"
  exit 1
fi