I had large list of domains for which I had to check to which location are they pointing/redirecting. Curl is best option for this kind of work. To save some time, I wrote this simple one liner which will do that for you.
First, create txt file which will contain list of all domains that you want to check. For this example I will create domains.txt.
Then, run this command – replace file name with yours.
> $ for i in `cat domains.txt`; do echo -n "$i -> "; curl -I -s -L -o /dev/null -w %{url_effective} -o /dev/null $i; echo "\t"; done
This will give you domain name with location to which it’s redirecting:
domain1.com -> https://www.domain1.com/sl domain1.de -> https://www.domain1.com/de domain2.si -> http://domain2.si/si example.com -> https://www.example.com/ lalala.es -> https://www. lalala.es/spain bash.com -> https://www.bash.com/i/love ...