每3秒打印IP设置信息

loop do
  if PLATFORM =~ /linux/i
    puts `ifconfig `
  else
    puts `ipconfig ` 
  end
  sleep 3
  p '-' * 10
end

编程技巧