In clearcase I want to list the fi开发者_如何学Goles /file versions checked in during the last 2 days. Can anyone help me with the command or script for the same.
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.
精彩评论