find files in ClearCase vobs by Issue number

IBM ClearCase is a Software Configuration Management tool used to keep concurrent versioning of the files (like CVS, SVN and others )

to find a particular files checked-in under certain issue use this command :
>VOBS=/path/to/ClearCaseVobs #vobs is the directories that keep the files in
>cd $VOBS
>for vob in * ;do cd $vob ; echo “***** $vob ******” ; ct find . -version ‘ISSUE==”EJBTHREE-1551″‘ -print; cd ../ ; done;

#this will list all file versions checked-in under EJBTHREE-1551

About SoCRaT

Systems Engineer, OSS & Linux Geek
This entry was posted in Uncategorized and tagged , . Bookmark the permalink.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s