Made ZOOM_SET also set centering
[geda-gerbv/spe.git] / cvs-tag.sh
blob83e7f6431390467ef0c62228a25261e1d3afce6b
1 #!/bin/sh
3 # Tags files according to FILES2TAG. Entries with # in the beginning will
4 # not be tagged.
6 # (C) 2002, Stefan Petersen (spe@stacken.kth.se)
7 # $Id$
9 FILES2TAG=files2tag.txt
10 CVS=cvs
11 TAG=$1
13 for file2tag in `cat ${FILES2TAG}` ; do
14 if test -z "`echo ${file2tag} | mawk '$0 ~ /^#/'`" ; then
15 ${CVS} tag -l ${TAG} ${file2tag}
17 done