I try to pass this result in the third command -d argument, But i failed.
$ cat asnlookups_domains_ip.txt | awk '{print $1}' | amass intel -whois -d
flag needs an argument: -d
I try to pass this result in the third command -d argument, But i failed.
$ cat asnlookups_domains_ip.txt | awk '{print $1}' | amass intel -whois -d
flag needs an argument: -d
You could try xargs
:
cat asnlookups_domains_ip.txt | awk '{print $1}' | xargs -n1 amass intel -whois -d
It passes the standard input as arguments after your command.