Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

Doing something equivalent of "svn status" in CVS (See related posts)

The "cvs status" command is practically useless, given the amount of stuff it spews out. So I do the following to find out the status of my local working copy. This shows all updated, added, or deleted files, as well as those CVS know nothing about (and which perhaps should be added):

   1  cvs status 2>&1 | egrep "(^\? |Status: )" | grep -v Up-to-date

You need to create an account or log in to post comments to this site.


Click here to browse all 5349 code snippets

Related Posts