From 1328a508296d5a8756f0ea66765f659babadb67a Mon Sep 17 00:00:00 2001 From: Colin Watson Date: Wed, 13 Nov 2002 11:38:55 +0000 Subject: [PATCH] cvs-list-tags: New script to (try to) list all tags in a CVS repository. --- cvs-list-tags | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 cvs-list-tags diff --git a/cvs-list-tags b/cvs-list-tags new file mode 100755 index 0000000..74d8507 --- /dev/null +++ b/cvs-list-tags @@ -0,0 +1,7 @@ +#! /bin/sh +# List all the tags available for all files in a CVS working copy. +# This is an ugly hack. It should more or less work, though. +cvs status -vR 2>/dev/null | \ + grep '(revision:' | \ + sed 's/[[:space:]]*\([^[:space:]]*\).*/\1/' | \ + sort -u -- 2.30.2