Daily Archives: 2010-02-15

Listing the CVS tags on a file

cvs status -v file |\ awk ‘/Existing Tags:/{c=1;next}c{print}’ |\ awk ‘{print $1}’ Gives a plain list of tags, nothing fancy, though …

Posted in EN, Programming, VCS | Leave a comment