Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'A script to find a router's public non-static IP address' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
A script to find a router's public non-static IP address
Authored by: statefuldotnet on Oct 24, '05 08:30:15AM
If you use the all powerful Quicksilver it comes with a Get External IP.scpt that can be quickly invoked and displays the IP in a huge Bezel display. I have internal IP mapped to "IP" and external mapped to EIP -- so either address is presented with only 4 (IP) or 5 (EIP) keystrokes from anywhere on the system. The "Get External IP.scpt" is:

set theIP to do shell script "curl -sf http://checkip.dyndns.org/|cut -d ':' -f 2|cut -d '

[ Reply to This | # ]

A script to find a router's public non-static IP address
Authored by: statefuldotnet on Oct 24, '05 08:32:09AM

set theIP to do shell script "curl -sf http://checkip.dyndns.org/|cut -d ':' -f 2|cut -d '<' -f1|sed -e 's/ //g'"
tell application "Quicksilver" to show large type theIP
return theIP

too even -- thanks html.



[ Reply to This | # ]