1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/sample/time.rb
tadf 1f838ea1c1 * sample/time.rb: use Process.times instead of Time.times.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14841 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-01-02 01:15:30 +00:00

12 lines
203 B
Ruby

#! /usr/bin/env ruby
b = Time.now
system(*ARGV)
e = Time.now
tms = Process.times
real = e - b
user = tms.cutime
sys = tms.cstime
STDERR.printf("%11.1f real %11.1f user %11.1f sys\n", real, user, sys)