Daily Archive for February 15th, 2010

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 …