Skip to content

Instantly share code, notes, and snippets.

View newlandk's full-sized avatar

Kevin Newland newlandk

  • Target Corporation
  • Minnesota
View GitHub Profile
@newlandk
newlandk / ping_tool.rb
Last active July 15, 2021 21:38
Ruby Host Ping Tool
#gem install net-ping
#run script as root
#sudo ruby ping_tool.rb 8.8.8.8
require 'net/ping'
module Enumerable
def sum
self.inject(0){|accum, i| accum + i }