How to get a list of validation files between two clearcase brush cells in unix

In UCM cleanup, how do I get a list of validation files between two baselines in Linux?

I use a shell script, but does it fall during the execution of the command below?

How to redirect output from a text or text file?

cleartool diffbl -act -ver label1 label1 → data.txt

+1
source share
1 answer

Note. If your baselines are full, you can use the search query, which is better to redirect to a text file using the parameter -print.
See " Find Changes Between Tags .

cleartool" :

:

cleartool , . , script ( ), :

STDOUT, "> file_name.txt" :

cleartool find . -all -print > c:\out.txt

STDOUT, STDERR , "> file_name.txt 2>&1" :

    Windows    -- cleartool find . -all -print > c:\out.txt 2>&1
    UNIX/Linux -- cleartool find . -all -print >& /tmp/out.txt
+1

All Articles