clearcase - ClearTool: Finding changes from specific date -


i @ loss on how

  1. list files , directores deleted branch "xyz" on date mar-1.
  2. list directories had contents changed on same day.

i tried transcribe patterns cleartool - find unloaded/removed files branches dates, no success.

thanks million

adam

the find commands mentioned in "cleartool - find unloaded/removed files" files only.

you can use them directory if use -type d (instead of -type f)

but wouldn't address date issue.

since file deletion results in new directory version (to record deletion), search directory versions created on day:

cleartool find . -type d -version 'created_since(01-mar) && !created_since(02-mar)' -print 

then, compare previous versions (cleartool diff -previous) each of directory version found, in order grep , list deleted files.


Comments

Popular posts from this blog

Android layout hidden on keyboard show -

google app engine - 403 Forbidden POST - Flask WTForms -

c - Why would PK11_GenerateRandom() return an error -8023? -