From f6eab4d8b56f97b0f50052502f04decc43639d59 Mon Sep 17 00:00:00 2001 From: Vera Lewis Date: Wed, 17 Dec 2025 23:10:04 -0600 Subject: [PATCH] simplified vns_gpgid --- vns | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/vns b/vns index f483c54..dba6948 100644 --- a/vns +++ b/vns @@ -130,11 +130,7 @@ vns_gpgid () { # gpgid # Print a list of all recipients listed in .gpg-id - # shellcheck disable=SC2002 - cat "${VNS_STORE}/.gpg-id" | while read -r recipient; do - echo "-r" - echo "$recipient" - done + sed 's/^/-r /' "$VNS_STORE/.gpg-id" }