View in color | License | Download script | History | Other scripts by: notchent |
30-Apr 14:05 UTC
[0.042] 10.199k
[0.042] 10.199k
display-ip-addresses.rRebol [
title: "Display IP Addresses"
date: 29-june-2008
file: %display-ip-addresses.r
purpose: {
Display the WAN and LAN addresses of your PC.
Taken from the tutorial at http://musiclessonz.com/rebol_tutorial.html
}
]
parse read http://whatsmyip.org/ [thru <title> copy my-ip to </title>]
parse my-ip [thru "Your IP is " copy stripped-ip to end]
alert to-string rejoin ["WAN: " stripped-ip " ---- LAN: " read join dns:// read dns://] |