aboutsummaryrefslogtreecommitdiff
path: root/lib/keyringer/actions/pass
blob: 7bca7d5300938001a14f626650e6f5221a685342 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env bash
#
# Behave like pass(1), outputing just the first line of a secret.
#

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

# Get file
keyringer_get_file "$2"

# Decrypt
pass="$($GPG --use-agent -d "$KEYDIR/$FILE" 2> /dev/null | head -n 1)"

# Output password
echo "$pass"

# Exit
exit "$?"