Simple Way to Get your External IP on the Command Line

This is an easy way to see what IP a website is seeing you come from:

curl httpbin.org/ip
{
  "origin": "52.11.93.181"
}

curl icanhazip.com
52.11.93.181

Lots of other options, but these are some of the shortest I've seen.