如何检查上次访问 ClearCase vob?
How to check last access ClearCase vob?
谁能帮我找到上次访问 ClearCase (UCM) VOBS 的时间和日期?
我记得使用 cleartool lshistory
来检查 vob 上发生的最后一个事件日期。
类似于:
cleartool lshis -fmt "%Xn\t%Sd\t%e\t%h\t%u \n" -since 01-Oct-2015 -all <vobname>| grep -v lock | head -1 | grep -o '20[0-9][0-9]-[0-9][0-9]-[0-9][0-9]'
这将给出过去 6 个月的事件(例如 "create version"、"create branch"、...)。
如果有none,则最近没有访问过VOB(然后考虑存档)
这适用于任何 VOB(UCM 或非 UCM)。
'lshistory'一定会给你PVOB的最新变化。如果您对上次访问时间感兴趣,可以查看 PVOB 的 DB 文件。例如,
% ls -ltur <pathname_to_VOB_storage_directory>/db
这将按每个文件的上次访问时间排序,这些文件中的最新文件(由于“-tr”标志而将是最后列出的)应该包括接近上次 PVOB 时间的时间被访问了。例如:
-rw-r--r-- 1 vob_owner vob_group 94830592 Mar 28 2016 vob_db.d05
此 PVOB 最后一次访问是在 2016 年 3 月 28 日。
谁能帮我找到上次访问 ClearCase (UCM) VOBS 的时间和日期?
我记得使用 cleartool lshistory
来检查 vob 上发生的最后一个事件日期。
类似于:
cleartool lshis -fmt "%Xn\t%Sd\t%e\t%h\t%u \n" -since 01-Oct-2015 -all <vobname>| grep -v lock | head -1 | grep -o '20[0-9][0-9]-[0-9][0-9]-[0-9][0-9]'
这将给出过去 6 个月的事件(例如 "create version"、"create branch"、...)。
如果有none,则最近没有访问过VOB(然后考虑存档)
这适用于任何 VOB(UCM 或非 UCM)。
'lshistory'一定会给你PVOB的最新变化。如果您对上次访问时间感兴趣,可以查看 PVOB 的 DB 文件。例如,
% ls -ltur <pathname_to_VOB_storage_directory>/db
这将按每个文件的上次访问时间排序,这些文件中的最新文件(由于“-tr”标志而将是最后列出的)应该包括接近上次 PVOB 时间的时间被访问了。例如:
-rw-r--r-- 1 vob_owner vob_group 94830592 Mar 28 2016 vob_db.d05
此 PVOB 最后一次访问是在 2016 年 3 月 28 日。