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

Popular posts from this blog

windows - Why does Vista not allow creation of shortcuts to "Programs" on a NonAdmin account? Not supposed to install apps from NonAdmin account? -

c++ - How do I get a multi line tooltip in MFC -

unit testing - How to mock PreferenceManager in Android? -