![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| AIX AIX is IBM's industry-leading UNIX operating system that meets the demands of applications that businesses rely upon in today's marketplace. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| how many ip's | chomca | AIX | 4 | 07-01-2008 12:31 PM |
| Alternate to pinging boxes | benefactr | UNIX for Advanced & Expert Users | 5 | 12-13-2007 01:40 AM |
| pinging an ip | ammu | Shell Programming and Scripting | 1 | 07-19-2007 11:58 AM |
| Extracting IP's from a file | eth0 | Shell Programming and Scripting | 14 | 08-18-2006 11:35 AM |
| Server stopped pinging (in and out) | skotapal | UNIX for Advanced & Expert Users | 2 | 11-14-2002 07:22 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
pinging IP's in a file
Hey all. I have a long list of IP addresses I want to ping. The IP's are located in a flat file "ping_info.dat".
I was wondering what the best way to go about this would be. Can someone help me out? |
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
A simple solution would be to use a for loop :-
for x in `pg file` do ping -options $x done Hope this helps... |