listing files checked in during last 2 days

妖精的绣舞 提交于 2019-12-10 16:15:32

问题


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

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!