I have:
- a view created as dynamic view
- Files which are checkout or checked-in.
Now I want know the list of files checked-in in view.
What command should I use?
I have:
Now I want know the list of files checked-in in view.
What command should I use?
Copyright © 2021 Jogjafile Inc.
One way would be to use
cleartool ls, and grep for /main/LATEST (or just LATEST if you don't care of the branch selected, depending on your config spec)Only versioned checked-in file would be listed that way.
Using
cleartool findis also a possibility, but would list versions even for files which are checked out, which is not what you want.See those examples to illustrate the difference.