#!/bin/sh # tag の名前を引数で指定すると、そのファイル名で # 構成するファイルのバージョン一覧を出力する cvs update -p -r $1 >/tmp/cvs-update-p 2>/tmp/$1 grep -v -e "^=" /tmp/$1 >$1 /bin/rm /tmp/cvs-update-p /bin/rm /tmp/$1 # end of file