I want to find all files with a specific version in ClearCase. I did this:
cleartool find . -version 'version(<version-specifier>)' -print
This prints the fully qualified version of the files I am interested in, which is good. The problem with this is that it finds only files which are visible from the current view. For example, there is a file some_directory/some_file
, and the version <version-specifier>
(for exampe /main/some_branch/LATEST
or /SOME_LABEL
) exists for both some_directory
and some_file
. However, some_file
does not exist in the current view (because the version of some_directory
selected by the view does not contain that file). In this case, the above query doesn't find the file some_file
.
Is there a way to find all files with the version <version-specifier>
? To be more precise, it's good for me to find all files with the version <version-specifier>
in any directory having the same version specifier? Is it possible without creating a new view or modifying the config spec?