aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillermo Ramos2023-03-23 15:24:24 +0100
committerGuillermo Ramos2023-03-23 15:24:24 +0100
commit67f87965bb5cc77d1025d9db60ac86fac2f9b169 (patch)
tree1fc31bf73469b10d1d020ef656082ef823fb82d6
parent9bee881c089ffb6c32c8d686dbfdbdcda47384d4 (diff)
downloadcli-67f87965bb5cc77d1025d9db60ac86fac2f9b169.tar.gz
ssf: egrep -> grep -E
-rwxr-xr-xssf2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssf b/ssf
index 5ce0120..f87cd09 100755
--- a/ssf
+++ b/ssf
@@ -30,7 +30,7 @@ $egrep_regex =~ s/\./\\./g;
$egrep_regex =~ s/\*/.*/g;
my $known_hosts = `
- egrep '$egrep_regex' ~/.ssh/known_hosts |
+ grep -E '$egrep_regex' ~/.ssh/known_hosts |
cut -f1 -d" " |
sort -u
`;