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


Click here to return to the 'View IP address info with GeekTool' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
View IP address info with GeekTool
Authored by: LegoEvan on Oct 06, '04 01:38:49PM

I have this echoed in the lower left hand corner of my screen:<br>
<br>
Get IP.sh<br>
[code]
#!/bin/sh

ifconfig | grep 'broadcast' | awk '{print $2}'
[/code]<br>
I find it waaay simpler.



[ Reply to This | # ]
View IP address info with GeekTool
Authored by: Whosawhatsis on Oct 07, '04 02:52:03AM

I got you beat.

ifconfig | awk '/broadcast/ {print $2}'

---
I was offered a penny for my thoughts, so I gave my two cents... I got ripped off.



[ Reply to This | # ]