m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2015-01-28 16:40:15 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2015-01-28 16:45:21 +0100
commit9c58e0da7c1cb8abc84aca094d3020aeb3c608b4 (patch)
tree8b03452de217d949231c889ad9d6c5fcc941081f /tests
parentcb4d6de58c0fa2ab9a1b798efd184fc269ecc239 (diff)
Use more stable with-colons output
Diffstat (limited to 'tests')
-rwxr-xr-xtests/t0300-reencryption.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/t0300-reencryption.sh b/tests/t0300-reencryption.sh
index 96da41b..9d46580 100755
--- a/tests/t0300-reencryption.sh
+++ b/tests/t0300-reencryption.sh
@@ -7,10 +7,10 @@ cd "$(dirname "$0")"
INITIAL_PASSWORD="will this password live? a big question indeed..."
canonicalize_gpg_keys() {
- $GPG --list-keys --keyid-format long "$@" | sed -n 's/sub *.*\/\([A-F0-9]\{16\}\) .*/\1/p' | sort -u
+ $GPG --list-keys --with-colons "$@" | sed -n 's/sub:[^:]*:[^:]*:[^:]*:\([^:]*\):[^:]*:[^:]*:[^:]*:[^:]*:[^:]*:[^:]*:[a-zA-Z]*e[a-zA-Z]*:.*/\1/p' | LC_ALL=C sort -u
}
gpg_keys_from_encrypted_file() {
- $GPG -v --no-secmem-warning --no-permission-warning --list-only --keyid-format long "$1" 2>&1 | cut -d ' ' -f 5 | sort -u
+ $GPG -v --no-secmem-warning --no-permission-warning --list-only --keyid-format long "$1" 2>&1 | cut -d ' ' -f 5 | LC_ALL=C sort -u
}
gpg_keys_from_group() {
local output="$($GPG --list-config --with-colons | sed -n "s/^cfg:group:$1:\\(.*\\)/\\1/p" | head -n 1)"