f = File.open("/test/serverlist.txt", "r")
list = f.readlines
list.each do|servers|
  File.open('/test/results.txt','w') do |b|
  servers.each do |p|
    r = `ping -n 1 #{p}`
    b.puts r
  end
end

It reads the serverlist file, and returns a string. The serverlist file contains the following IP addresses:

192.168.150.254
192.168.120.2
link|improve this question

74% accept rate
Your probleme is not clear! Tell us what do you want in ouput – Dinatih May 3 '11 at 18:54
I want to output the results of the ping to a file. I am trying to use the serverlist contents )IP addresses as the servers to ping – rahrahruby May 3 '11 at 18:57
Please don't make us guess what is wrong. Take the time to clearly explain what you want your code to do, and why it is not doing it. – the Tin Man May 4 '11 at 0:11
feedback

4 Answers

up vote 2 down vote accepted

Are you looking to read each line from the file and then do something with like this.

fout = File.open('/test/results.txt','w')
File.open("/test/serverlist.txt", "r").each_line do |server|
   server.chomp!
   r = `ping -n 1 #{server}`
   fout.puts r
end
link|improve this answer
Thanks, that did the trick – rahrahruby May 3 '11 at 19:09
fout should be closed. – steenslag May 3 '11 at 21:12
feedback

I don't think you will need to iterate over the server line itself, and with a few style mods added and ping(1) arguments changed, I would suggest...

open 'serverlist.txt', 'r' do |f|
  open '/tmp/results.txt', 'w' do |b|
    f.readlines.each do |server|
      b.puts `ping -c 1 -t 1 #{server}`
    end
  end
end
link|improve this answer
feedback

Just use b.write in place of b.puts

link|improve this answer
feedback

if you're using linux you could just go for

File.open("serverlist.txt").each { |addy| `echo "#{`ping -c 1 #{addy}`}" >> result.txt` }

and be done with it

well .. maybe add

`echo "# server-availability" > result.txt`

before the above line so the file gets reset every time you call this

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.