Andrew DeFaria wrote: > How do I easily and efficiently list all files with a particular tag? > Let's say, for example, that when a set of files are > committed a tag is > associated with them.
cvs log | grep -E "(RCS file: |particular_tag)" | grep -B1 particular_tag should do it. Your subject line says "file versions". If you don't want the revision number, then add another grep: | grep -v "RCS file" -- Jim Hyslop Senior Software Designer Leitch Technology International Inc. ( http://www.leitch.com ) Columnist, C/C++ Users Journal ( http://www.cuj.com/experts ) _______________________________________________ Info-cvs mailing list [email protected] http://lists.gnu.org/mailman/listinfo/info-cvs
