times

Displays the accumulated process time.

The main purpose

return value

Always returns success.

example

# Excuting an order
times
# Return results
0m0.037s 0m0.009s
0m0.010s 0m0.024s
# According to the man manual of times(2), the corresponding relationship is as follows:
# User time | System time
# User time of the child process | System time of the child process

Notice