Community technical support mailing list was retired 2010 and replaced with a professional technical support team. For assistance please contact: Pre-sales Technical support via email to sales@march-hare.com.
Chuck Kirschman wrote: > "cvs -nq up" is what i use to find all locally modified. Occasionally I > use it with a regex like > > cvs -nq up | findstr /ir /c:"^[MARC]" > > depending on what I am doing. According to Tony (and the manual), -n is not supported for update. Try cvs -q stat -qq The first "q" suppresses the "Examining <dir>" lines, the second reduces the stat output to a single line, and the third suppresses the stat output for up-to-date files. Gerhard