Not directly, regarding the indentation of the part.
fmt_ccase
man page offers an extended version path, date, user and comment, but you can only add spaces or tabs (i.e. "escape sequences") before each field, do not place tabs in the middle of one of these fields (e.g. tabs before each line of comment)
cleartool descr -fmt "version \"%Xn\"\ncreated %d by %u\n\t\"%c\"" afile
Note that one example indicates that spaces before the field are repeated for all lines of this field:
Run output from lshistory βlong
.
Note that in cleartool
mode with a single command, backslashes ( \
) are used to escape double quotes in the format string.
cleartool lshistory -fmt "%d %Fu (% u@ %h)\n %e \"%n\"\n \"%Nc\"\n" util.c 2007-05-11T09:24:38 Anne Duvo ( anne@neptune ) create version " util.c@ @\main\3" "fix bug r2-307" 2007-05-10T09:09:29 Ravi Singha ( ravi@mercury ) create version " util.c@ @\main\2" "ready for code review" . . .
source share