5

Im looking for a command that gives me all the deep overlapped files in a stream.

I've tried

accurev stat -B *.cs 

Doesn't really work.

djot
  • 2,952
  • 4
  • 19
  • 28

2 Answers2

3

Have you tried

accurev stat -B -o *.cs

anonymous
  • 31
  • 1
3

You should pass in the stream name where you want to search for deep overlaps as well as the -o switch for overlaps.

Example: accurev stat -s stream_name_to_search_in -o -B

jtalbott
  • 1,158
  • 6
  • 7
  • And yes, as anonymous says, if you are in a workspace issuing the command, "accurev stat -o -B *.cs" will work fine without having to specify a search stream... – jtalbott Mar 12 '10 at 15:02