In this example, under SunOS 4.1.1, the other fields show the amount
of shared memory used, the amount of nonshared memory used
(k), the number of block input and output
operations (io), and the number of page faults
plus the number of swaps (pf and
w). The memory management figures are unreliable
in many implementations, so take them with a grain of salt.
/bin/time reports only the real time (elapsed
time), user time, and system time. For example:
% /bin/time analyze inputdata outputfile
60.8 real 11.4 user 4.6 sys
[If you use a shell without a built-in time
command, you can just type time.
-- JP] This reports that the program ran for
60.8 seconds before terminating, using 11.4 seconds of user time and
4.6 seconds of system time, for a total of 16 seconds of CPU time. On
Linux and some other systems, that external time
command is in /usr/bin/time and may make a more
detailed report.