Bash スクリプト - whois コマンドを使用して不正使用メールを取得しようとする

Bash スクリプト - whois コマンドを使用して不正使用メールを取得しようとする

出力から電子メール アドレスのみを取得するにはどうすればよいですか?

 $ whois $IP | grep @ | head -1
 notify: [email protected] 

答え1

これは動作します:

$ whois 203.xxx.xxx.105 | grep @ | head -1 | cut -d" " -f2
[email protected]

これも同様に機能します:

$ whois 203.xxx.xxx.105 | grep @ | head -1 | awk '{ print $2 }'
[email protected]

関連情報