Expand a t.co url using curl
curl -I <url>
> HTTP/1.1 301 Moved Permanently
...
< location: <actual url>
or curl -v <url>
which also includes whether the server is blacklisted (not that this is necessarily correct).
Mostly Robot
curl -I <url>
> HTTP/1.1 301 Moved Permanently
...
< location: <actual url>
or curl -v <url>
which also includes whether the server is blacklisted (not that this is necessarily correct).