Verified Commit 85e893e0 authored by anarcat's avatar anarcat
Browse files

make power-grep easier to copy-paste

parent c3032bf7
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -25,7 +25,9 @@
    (not great):

        for f in *; do
            if gpg -d < $f 2>/dev/null | grep -i -e 148.251.180.115 -e 2a01:4f8:211:6e8::2 -e kvm2.torproject.org -e unifolium.torproject.org -e unifolium -e kvm2 ; then
            if gpg -d < $f 2>/dev/null | \
                grep -i -e 148.251.180.115 -e 2a01:4f8:211:6e8::2 -e kvm2.torproject.org -e unifolium.torproject.org -e unifolium -e kvm2 
            then
                echo match found in $f
                ~/src/pwstore/pws ed $f
            fi