find files in clearcase

被刻印的时光 ゝ 提交于 2019-11-26 18:39:01

问题


situation: one vob, 2 views (main dev and branch view).

i need to find all files that where created in the branch view and therefore can't be found via merge manager.

anyone able to help?

thanks


回答1:


When it comes to cleartool find, the two sources of information and example I recommend are:

  • SAMECS find command
  • IBM find examples

In your case:

cleartool find -all -ele "brtype(mybranch) && !brtype(main)" -print

(supposing "main dev" means "branch 'main'")

cleartool find -all -type f -ele "brtype(mybranch) && !brtype(main)" -print

would limit that to files only (not directories)



来源:https://stackoverflow.com/questions/1311623/find-files-in-clearcase

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