Here's a command that shows your public IP, no matter whether you're behind a router: :)
Code:
wget -q www.whatismyip.com && grep displaycopy index.html|cut -d\' -f2 && rm -f index.html
z0ny
Retrieve public IP
|
Here's a command that shows your public IP, no matter whether you're behind a router: :) Code: wget -q www.whatismyip.com && grep displaycopy index.html|cut -d\' -f2 && rm -f index.html z0ny
2004-05-05, 05:16 PM
kick ass man, thanks
2007-09-21, 06:12 AM
the above scrfipt doesnt seem to work anymore, perhaps because www.whatismyip.com have changed their code, (looking in index.html tells you to use a different url) so i modified it slightly so now it reads Code: wget -q www.whatismyip.com/automation/n09230945.asp && cat n09230945.asp && rm -f n09230945.asp which does display the ip but it's badly formatted, Quote:[anyweb@localhost ~]$ wget -q www.whatismyip.com/automation/n09230945.asp && cat n09230945.asp && rm -f n09230945.asp81.235.240.204[anyweb@localhost ~]$ so who can tidy it up ? cheers anyweb
2007-09-21, 04:06 PM
Quote:so who can tidy it up ? Code: $ wget -q http://www.whatismyip.com/automation/n09230945.asp -O - && echo Done
2007-12-13, 01:06 PM
I updated the command ;) Code: elinks --dump www.whatismyip.com | grep -i "Your IP Is" | awk '{ print $4 }'
2007-12-13, 02:00 PM
Quote:I updated the command ;) Not to sound a bit funny but why update the command when mine still works just perfectly? Also you are using the main URL which anyweb has already pointed out doesn't wish automation! Code: $ wget -q http://www.whatismyip.com/automation/n09230945.asp -O - && echo Still works fine!
2007-12-14, 08:37 AM
Ahhh poo, sorry znx I didn't try yours :( Sorry. |
« Next Oldest | Next Newest »
|