I am often getting a request like this. " Find the list of files changed from particular day".
I got answer to this as example given below
"cleartool find <Vobtag> -version "{brtype(IntegrationStream) && created_since(13-Jan.8:30)}" -print"
But few people are asking "Find the list of files changed and by whom". So that they can pin down the developer name and assign him the task to resolve issues.
Is it possible to pipeline the above command and find the user who made that version also?
You should be able to add to your find query a
created_bymember.See the
query languageman page.So your query would look like:
The OP comments:
True, for that you need to add a format parameter to your query, following the
fmt_ccaseman page.Since
cleartool findhas no-fmtparameter, what you do is to pipe the result of the find query to acleartool describecommand (which can use a-fmtdirective).The second part of the command is:
The important parameters are:
It represents the extended pathname of a version found by the
findquery.