Clearcase: List labels matching a particular string -
i list available labels matching particular string applied in view.
i confirm filter in cleartool find
not possible:
ct find . -ele "lbtype_sub(my_lab*)" -print
would not work (no wildcard in query argument.
if cannot use grep in shell pipe, can consider using grep in exec part of find, like in example?
ct find . -kind lbtype -exec "echo %clearcase_pn%|grep my_lab"
if not acceptable, need write result in file , process tool (sed?)
you have packages windows including unix commands: see so question.
of have freeware emulating grep command.
if must stay native windows commands, must redirect result in file, and use find (english translation).
Comments
Post a Comment