want to make a list of all users connected to a network

2007-09-09 Thread horizxon
How would I make a script that gets a list of all the computer names and ip addresses, internal 192.168..., of the computers attached to my wired network? Or is there a program that will do this already? Thanks -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: want to make a list of all users connected to a network

2007-09-09 Thread usenet
On Sep 8, 4:52 pm, [EMAIL PROTECTED] wrote: > How would I make a script that gets a list of all the computer names > and ip addresses, internal 192.168..., of the computers attached to my > wired network? Or is there a program that will do this already? Thanks There is already such a program: who

Re: want to make a list of all users connected to a network

2007-09-09 Thread Peter Scott
On Sun, 09 Sep 2007 07:24:44 +, usenet wrote: > On Sep 8, 4:52 pm, [EMAIL PROTECTED] wrote: >> How would I make a script that gets a list of all the computer names >> and ip addresses, internal 192.168..., of the computers attached to my >> wired network? Or is there a program that will do this

Re: want to make a list of all users connected to a network

2007-09-09 Thread Ken Foskey
On Sat, 2007-09-08 at 16:52 -0700, [EMAIL PROTECTED] wrote: > How would I make a script that gets a list of all the computer names > and ip addresses, internal 192.168..., of the computers attached to my > wired network? Or is there a program that will do this already? Thanks Probably a reverse DN

Comparing numbers

2007-09-09 Thread Jeff
This is a true beginner's question, so bear with me. I have an array of numbers. Is there a function to tell me which is larger (or smaller?) Also, how do I search with perldoc for a function when I don't know the name? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mai

Re: Comparing numbers

2007-09-09 Thread Douglas Hunter
Jeff wrote: This is a true beginner's question, so bear with me. I have an array of numbers. Is there a function to tell me which is larger (or smaller?) Sure. Perl's 'sort' function is quite flexible, and supports numerically sorting lists. `perldoc -f sort` describes what you want, I bel

Re: Comparing numbers

2007-09-09 Thread John W. Krahn
Jeff wrote: This is a true beginner's question, so bear with me. I have an array of numbers. Is there a function to tell me which is larger (or smaller?) I assume that you mean numerically larger or smaller? perldoc List::Util Look for the min() and max() functions. Also, how do I search w

Re: want to make a list of all users connected to a network

2007-09-09 Thread Ron Bergin
On Sep 8, 4:52 pm, [EMAIL PROTECTED] wrote: > How would I make a script that gets a list of all the computer names > and ip addresses, internal 192.168..., of the computers attached to my > wired network? Or is there a program that will do this already? Thanks The program that you're looking for i

Re: Comparing numbers

2007-09-09 Thread [EMAIL PROTECTED]
On Sep 9, 6:28 pm, [EMAIL PROTECTED] (Jeff) wrote: > This is a true beginner's question, so bear with me. I have an array of > numbers. Is there a function to tell me which is larger (or smaller?) Also, > how do I search with perldoc for a function when I don't know the name? You have to work your

Re: want to make a list of all users connected to a network

2007-09-09 Thread horizxon
On Sep 9, 8:46 am, [EMAIL PROTECTED] (Ken Foskey) wrote: > On Sat, 2007-09-08 at 16:52 -0700, [EMAIL PROTECTED] wrote: > > How would I make a script that gets a list of all the computer names > > and ip addresses, internal 192.168..., of the computers attached to my > > wired network? Or is there a

Re: want to make a list of all users connected to a network

2007-09-09 Thread Ron Bergin
On Sep 9, 11:56 am, [EMAIL PROTECTED] wrote: > On Sep 9, 8:46 am, [EMAIL PROTECTED] (Ken Foskey) wrote: > > > On Sat, 2007-09-08 at 16:52 -0700, [EMAIL PROTECTED] wrote: > > > How would I make a script that gets a list of all the computer names > > > and ip addresses, internal 192.168..., of the co