Skip to content

Instantly share code, notes, and snippets.

@2bj
Created June 22, 2009 10:30
Show Gist options
  • Save 2bj/133909 to your computer and use it in GitHub Desktop.
Save 2bj/133909 to your computer and use it in GitHub Desktop.
bash implementation of myip.yandex.ru
#!/usr/bin/env bash
# @author: 2bj
curl -s myip.yandex.ru | grep "IP: " | sed 's/^ *//g' | sed 's/Ваш IP: //g'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment