Quote:
Originally posted by PTBmilo
I've got the basic system stuff, but I need to know how I can calculate (somewhat precisely) the amount of time it takes for the process
|
For this, you may want to have a look at the "time" utility. For example:
shell> time tar xjf linux-2.4.20.tar.bz2
prints (on my machine):
real 1m18.064s
user 0m43.740s
sys 0m3.670s
For more info see "man time".