From 2d158826b2448f9ef0a07f49fc6e265d26d81737 Mon Sep 17 00:00:00 2001 From: David Runge Date: Fri, 9 Dec 2022 23:01:27 +0100 Subject: Use grep -E in gpg2mutt bin/gpg2mutt: Change gpg2mutt to use grep -E instead of the obsolete egrep. --- bin/gpg2mutt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/gpg2mutt b/bin/gpg2mutt index 18553c0..976b558 100755 --- a/bin/gpg2mutt +++ b/bin/gpg2mutt @@ -65,5 +65,5 @@ n /^pub:/ b START b IGNORE -' | egrep -v 'WhatYouDontWantInThisList@example\\\\\.org' | sort -u > ${output} +' | grep -Ev 'WhatYouDontWantInThisList@example\\\\\.org' | sort -u > "${output}" # Note the triple escaped backslash! -- cgit v1.2.3-54-g00ecf