Command to find all view private files in the current directory recursively

前端 未结 6 1309
情歌与酒
情歌与酒 2020-11-28 11:49

What is the clearcase Command to find all view private files in the current directory recursively?

6条回答
  •  执笔经年
    2020-11-28 12:33

    In case it helps anyone else reading this question, here is VonC's Unix solution with a couple of minor changes to run under Cygwin on Windows.

    In Cygwin:

    cleartool ls -rec | grep -v "Rule:" | grep -v "hijacked" | grep -v "eclipsed" | grep -v -- "-->" 
    

    The Cygwin line is similar to the Unix given by VonC, but note the double-dash on the last grep is needed (and the xargs is not needed).

提交回复
热议问题