Isso funcionará:
$ whois 203.xxx.xxx.105 | grep @ | head -1 | cut -d" " -f2
[email protected]
Este também funcionará:
$ whois 203.xxx.xxx.105 | grep @ | head -1 | awk '{ print $2 }'
[email protected]
Como posso obter apenas o endereço de e-mail da saída?
$ whois $IP | grep @ | head -1
notify: [email protected]
Isso funcionará:
$ whois 203.xxx.xxx.105 | grep @ | head -1 | cut -d" " -f2
[email protected]
Este também funcionará:
$ whois 203.xxx.xxx.105 | grep @ | head -1 | awk '{ print $2 }'
[email protected]