출력에서 이메일 주소만 얻으려면 어떻게 해야 합니까?
$ 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]