Re: finding the ip address

2004-08-29 Thread Wojciech Puchar
> > > Doh! You'd still have to deal with some text output, > though. Sorry. > > KDK host -t A `hostname`|head -1|cut -f 4 -d " " ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any ma

Re: finding the ip address

2004-08-29 Thread Wojciech Puchar
> > I modifies your solution slightly, so I could use it for more interfaces > easily. > > ifconfig dc0 | grep inet|awk '{print $2}' > ___ if your host use DHCP - you may add something to your dhclient.conf and make some script to record it's IP. _

Re: finding the ip address

2004-08-29 Thread Kevin D. Kinsey, DaleCo, S.P.
Kevin D. Kinsey, DaleCo, S.P. wrote: Matt Emmerton wrote: I'm messing with ubermon for superkaramba and I want to know how to get my hosts ip address from the command line (and only the ip address). I know I can grep and sed rc.conf or the output of ifconfig, but I'm hoping there's a command li

Re: finding the ip address

2004-08-29 Thread Steven Friedrich
On Sunday 29 August 2004 04:04 pm, Matt Emmerton wrote: > > I'm messing with ubermon for superkaramba and I want to know how to get > > my hosts ip address from the command line (and only the ip address). > > > > I know I can grep and sed rc.conf or the output of ifconfig, but I'm > > hoping > > >

Re: finding the ip address

2004-08-29 Thread Kevin D. Kinsey, DaleCo, S.P.
Matt Emmerton wrote: I'm messing with ubermon for superkaramba and I want to know how to get my hosts ip address from the command line (and only the ip address). I know I can grep and sed rc.conf or the output of ifconfig, but I'm hoping there's a command like whoami for the ip address.

Re: finding the ip address

2004-08-29 Thread Matt Emmerton
> I'm messing with ubermon for superkaramba and I want to know how to get my > hosts ip address from the command line (and only the ip address). > > I know I can grep and sed rc.conf or the output of ifconfig, but I'm hoping > there's a command like whoami for the ip address. There isn't anything