[ On Sunday, March 3, 2002 at 17:31:55 (-0400), Alec wrote: ]
> Subject: Listing all symbolic tags in repository
> 
> How does an end-user get a list of all symbolic tags
> in a CVS :pserver: repository ?

        cvs -q -d :pserver:user@host:/repostiory rlog -h directory | \
                grep '^ ' | \           # that's a <TAB> after the "^"
                awk -F: '{print $1}' | \
                sort -u

You'll want a '-l' in with the '-h' if you really only mean the files in
the directory, not all the files in all the subdirectories.
 
-- 
                                                                Greg A. Woods

+1 416 218-0098;  <[EMAIL PROTECTED]>;  <[EMAIL PROTECTED]>;  <[EMAIL PROTECTED]>
Planix, Inc. <[EMAIL PROTECTED]>; VE3TCP; Secrets of the Weird <[EMAIL PROTECTED]>

_______________________________________________
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs

Reply via email to