mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
1f838ea1c1
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14841 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
12 lines
203 B
Ruby
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)
|