पार्सिंग .co.uk whois with awk


1

मुझे आश्चर्य है कि अगर कोई मुझे बता सकता है कि ये काम क्यों नहीं कर रहे हैं, उन्हें रजिस्ट्रार और एक्सपायरी डेट की आपूर्ति करनी चाहिए :

${AWK} -F: '/Registrar:/ && $0 != ""  { getline; REGISTRAR=substr($0,2,17) } END { print REGISTRAR }'

तथा

awk '/Expiry date:/ { print $3 }'``

यह हूइस का एक प्रिंट आउट है:

Domain name:
    kurtisbro.co.uk

Registrant:
    kurtis brown

Registrant type:
    UK Individual

Registrant's address:
    23 Cambria Mews
    NOTTINGHAM
    NG3 4GZ
    United Kingdom

Registrar:
    Heart Internet Ltd t/a eXtend [Tag = EXTEND]

Relevant dates:
    Registered on: 01-Mar-2012
    Expiry date:  01-Mar-2014
    Last updated:  23-Jun-2012

Registration status:
    Registered until expiry date.

Name servers:
    ns.mainnameserver.com
    ns2.mainnameserver.com

WHOIS lookup made at 17:38:12 07-Aug-2012

-- 
This WHOIS information is provided for free by Nominet UK the central registry
for .uk domain names. This information and the .uk WHOIS are:

Copyright Nominet UK 1996 - 2012.

You may not access the .uk WHOIS or use any data from it except as permitted
by the terms of use available in full at http://www.nominet.org.uk/whois, which
includes restrictions on: (A) use of the data for advertising, or its
repackaging, recompilation, redistribution or reuse (B) obscuring, removing 
or hiding any or all of this notice and (C) exceeding query rate or volume   
limits. The data is provided on an 'as-is' basis and may lag behind the
register. Access may be withdrawn or restricted at any time. 

2
क्या आप आउटपुट होने की उम्मीद करते हैं? कृपया इसे अपने प्रश्न में संपादित करें।
Nifle

@ निफ़ल मैंने अनुरोधित जानकारी जोड़ी है
Kurtis Bro

जवाबों:


1
for DOMAIN in newcastle.co.uk  guinness.co.uk  ;do
    echo "";
    echo $DOMAIN;
    whois $DOMAIN | awk -F: '/Registrar:/ && $0 != ""  { getline; REGISTRAR=$0 } END { print REGISTRAR }';
    whois $DOMAIN | awk -F: '/Expiry date:/ && $0 != ""  { EXPDATE=$0 } END { print EXPDATE }';
done

आउटपुट:

newcastle.co.uk
कॉर्पोरेशन सर्विस कंपनी (यूके) लिमिटेड [टैग = सीएससी-कॉर्प-डोमेन]
एक्सपायरी डेट: 30-Mar-2014

guinness.co.uk
मेलबोर्न आईटी टी / एक इंटरनेट नाम दुनिया भर में [टैग = मेलबोर्न-आईटी]
एक्सपायरी डेट: 06-Jan-2014


एक एकल क्वेरी और एक एकल awk स्क्रिप्ट अधिक सुरुचिपूर्ण होगी। @Peter O का उत्तर देखें।
tripleee

1

निम्नलिखित उदाहरण कस्टम रिकॉर्ड सेपरेटर का उपयोग करके दोनों आइटम निकालते हैं। वे दोनों कई लाइनों को संभालते हैं Registrar: रिकॉर्ड।


awk -vRS="(\n *Registrar:\n)|(\n +Expiry date: +)" \
'NR==2{ $0=gensub( /(^|\n) +/, "\\1","g" ) # gensub requires GNU awk
        match($0,/\n\n/); print substr($0,1,RSTART-1) } 
 NR==3{ match($0,/\n/);   print substr($0,1,RSTART-1) }'

या

awk -vRS="\n\n" '
 $1 == "Registrar:" { 
    gsub( /(^|\n) +/, "\n" )   # remove leading spaces
    sub( /Registrar:\n/, "" )  # remove "Registrar:" header line
    print 
 } 
 $1" "$2 == "Relevant dates:" { 
    match( $0, /Expiry date: +/ ); beg=RSTART+RLENGTH
    match( $0, /Expiry date: +[^\n]+/ )
    print substr( $0, beg , RSTART+RLENGTH-beg ) 
 }' 

उत्पादन

Heart Internet Ltd t/a eXtend [Tag = EXTEND]
01-Mar-2014
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.