For example, I need to do "make " for some software. I want to measurement how long this is going take.
Is there easy and accurate way to do so?
time
time make install
/usr/bin/time
You can use the shell builtin time. Just write it in front of the usual command like: time make.
time make
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
1 year ago
viewed
153 times
active
timebuilt-in. Example:time make install– MaxMackie Mar 7 '12 at 6:59timebuilt-in and a more complete/usr/bin/timeprogram. – Coren Mar 7 '12 at 7:30