Skip to content

Instantly share code, notes, and snippets.

@h2onda
Created August 12, 2015 06:12
Show Gist options
  • Save h2onda/db03c66312f9a107de82 to your computer and use it in GitHub Desktop.
Save h2onda/db03c66312f9a107de82 to your computer and use it in GitHub Desktop.
part /proc/net/netstat
#!/bin/env ruby
buf=[]
ARGF.readlines.each_with_index{|line,idx|
buf<<line.split
if (idx%2==1) then
buf.transpose.each{|l|
puts "%s\t%s" % l
}
buf=[]
end
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment