time: Setting Format

 
 1.1 Setting the Output Format
 =============================
 
 'time' uses a "format string" to determine which information to display
 about the resources used by the command it runs.  SeeFormat String,
 for the interpretation of the format string contents.
 
    You can specify a format string with the command line options listed
 below.  If no format is specified on the command line, but the 'TIME'
 environment variable is set, its value is used as the format string.
 Otherwise, the default format built into 'time' is used:
 
      %Uuser %Ssystem %Eelapsed %PCPU (%Xtext+%Ddata %Mmax)k
      %Iinputs+%Ooutputs (%Fmajor+%Rminor)pagefaults %Wswaps
 
    The command line options to set the format are:
 
 '-f FORMAT'
 '--format=FORMAT'
      Use FORMAT as the format string.
 
 '-p'
 '--portability'
      Use the following format string, for conformance with POSIX
      standard 1003.2:
 
           real %e
           user %U
           sys %S
 
 '-v'
 '--verbose'
      Use the built-in verbose format, which displays each available
      piece of information on the program's resource use on its own line,
      with an English description of its meaning.