Skip to content

Instantly share code, notes, and snippets.

@chendo
Created February 13, 2012 05:07
Show Gist options
  • Save chendo/1813841 to your computer and use it in GitHub Desktop.
Save chendo/1813841 to your computer and use it in GitHub Desktop.
require 'benchmark'
C = 100
Benchmark.bm do |x|
x.report do
C.times do
`pbpaste`
end
end
x.report do
C.times do
IO.popen('pbpaste', 'r+') do |f|
f.read
end
end
end
end
# Ruby 1.9.3
# user system total real
# 0.010000 0.050000 1.660000 ( 1.879449)
# 0.010000 0.060000 1.740000 ( 1.952888)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment