• Welcome to TechPowerUp Forums, Guest! Please check out our forum guidelines for info related to our community.
  • The forums have been upgraded with support for dark mode. By default it will follow the setting on your system/browser. You may override it by scrolling to the end of the page and clicking the gears icon.

Filtering content of command with grep

techinfozone

New Member
Joined
Feb 27, 2021
Messages
1 (0.00/day)
Location
Saudi Arabia
I am trying to filter out a the output of ssh-keyscan. The goal of this is to filter the output so I can use it in my python code to identify hosts connected to my VPN. Normally I would use grep to filter, one of my greps is filtering properly, but the other is not. The first grep is working to get just the ed25519 ID, but not sure why I am getting the SSH-2.0... lines also. The command I ran along with the output is below:
user@host# ssh-keyscan 10.xx.xx.xx | grep ed25519 | grep -v "#"
# 10.xx.xx.xx:22 SSH-2.0-OpenSSH_8.2p1 Ubuntu-4ubuntu0.3
# 10.xx.xx.xx:22 SSH-2.0-OpenSSH_8.2p1 Ubuntu-4ubuntu0.3
# 10.xx.xx.xx:22 SSH-2.0-OpenSSH_8.2p1 Ubuntu-4ubuntu0.3
# 10.xx.xx.xx:22 SSH-2.0-OpenSSH_8.2p1 Ubuntu-4ubuntu0.3
# 10.xx.xx.xx:22 SSH-2.0-OpenSSH_8.2p1 Ubuntu-4ubuntu0.3
10.xx.xx.xx ssh-ed25519 <host key>

I need it to print only the ed25519 line. I have also tried AWK to filter, but still not getting the output I need.

Any idea how to filter only the ed25519 line?
 
Well if you know the output is going to include "ssh-ed25519" you should grep on that.

Or pipe to that.

Or if you know it will be the last line of the output, pipe to the appropriate "tail" command.

Have you looked at the sed command?
 
Back
Top