How could i filter the result i got from whois?

894 Views Asked by At

i have tried running the whois command from the linux machine i get the result as i desired in terminal and the web but the result is quite tedious and long.Is there any way i could filter the output result means in the following link

http://network-tools.com/

while doing the whois scan i want to remove displaying the creation and updated date and also the notice paragraph.How could i perform these activites.

2

There are 2 best solutions below

1
On

You can use grep to pull out specific lines or exclude specific lines. For example:

# Show only lines containing "abc"
whois example.ex | grep -F abc

# Show only lines that don't contain "abc"
whois example.ex | grep -Fv abc
1
On

Simple string filters and replacement can be performed using grep.

However, grep doesn't work very nicely when it comes to strip out multiline strings or when the string you can to strip has different anchor points. For example, if you never want to display the disclaimer, this is a very hard task. Because every single registry prints out the disclaimer with a different formatting, in a different part of the response.

For such task, you need to either - decompose the answer into pieces (parse) and strip out what you don't need, then output the string - maintain a list of identifiers for every single part you want to strip out and use a custom script to remove that parts when they show up (that's more or less the approach the linux whois client is using to strip out the disclaimer when you pass the corresponding option from the command line).

In both cases, it's not a trivial task.