diff options
author | Florian Pritz <bluewind@xinu.at> | 2021-05-25 13:53:40 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2021-05-25 13:54:08 +0200 |
commit | 7640bdabea87fd1d2fcb18db165c7382e675d75f (patch) | |
tree | db0a730794380664be113f148804cbae10c20598 /get-hosts | |
parent | 61f47e3366ef2e9f9f61906839dbd854884df9e0 (diff) | |
download | bin-7640bdabea87fd1d2fcb18db165c7382e675d75f.tar.gz bin-7640bdabea87fd1d2fcb18db165c7382e675d75f.tar.xz |
get-hosts: Enable PCRE
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'get-hosts')
-rwxr-xr-x | get-hosts | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4,4 +4,4 @@ cut -d\ -f1 ~/.ssh/known_hosts ~/.ssh/known_hosts_work | tr , "\n" \ | sed -r 's#(_ecdsa|_rsa|_ed25519|_dsa)$##' | sort -u \ - | grep "$@" + | grep -P "$@" |