问题
In clearcase I want to list the files /file versions checked in during the last 2 days. Can anyone help me with the command or script for the same.
回答1:
You will find plenty of cleartool find examples, including:
"find all file versions created since a certain date"
List all the files versions below the current directory created since a certain date,
cleartool find . -type f -version "created_since(01-Mar)" –print
Note: Add the –follow options if you want to follow any symbolic links that are present.
See the query_language man page for the date format.
来源:https://stackoverflow.com/questions/6369309/listing-files-checked-in-during-last-2-days